ember-freshdesk-codemods
Version:
15 lines (10 loc) • 332 B
JavaScript
import { describe } from 'mocha';
import { run } from "@ember/runloop";
describe('Integration | Component | app-components/from-email', function() {
hooks.beforeEach(function() {
this.store = this.owner.lookup('service:store');
run(() => {
this.get('store').createRecord('contact', contact);
});
});
});