Isaac Ezer

Results 2 issues of Isaac Ezer

Fixes using `ember-i18n`. Otherwise the workaround described in https://github.com/DockYard/ember-validations/issues/366#issuecomment-169869004 no longer works. When running multiple tests, ember-validations will use a destroyed version of `i18n` from the 1st test run, leaking...

I'm working with an API that has a endpoint for creating multiple objects: ```js // Request // POST /invitations payload = { data: attributes { email: '[email protected],[email protected]' } } //...