1680508a0a
no issue - mirage is now enabled by default in development with logging (can be turned off once we're no longer relying on mocked members endpoints)
15 lines
396 B
JavaScript
15 lines
396 B
JavaScript
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
describe('Unit: Model: member', function () {
|
|
setupTest();
|
|
|
|
// Replace this with your real tests.
|
|
it('exists', function () {
|
|
let store = this.owner.lookup('service:store');
|
|
let model = store.createRecord('member', {});
|
|
expect(model).to.be.ok;
|
|
});
|
|
});
|