@ember-data/model 5.4.0-alpha.2 → 5.4.0-alpha.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,18 +0,0 @@
1
- import { expect } from 'chai';
2
- import { describe, it } from 'mocha';
3
-
4
- import { setupModelTest } from 'ember-mocha';
5
-
6
- describe('<%= friendlyTestDescription %>', function () {
7
- setupModelTest('<%= dasherizedModuleName %>', {
8
- // Specify the other units that are required for this test.
9
- <%= typeof needs !== 'undefined' ? needs : '' %>,
10
- });
11
-
12
- // Replace this with your real tests.
13
- it('exists', function () {
14
- let model = this.subject();
15
- // var store = this.store();
16
- expect(model).to.be.ok;
17
- });
18
- });
@@ -1,15 +0,0 @@
1
- import { expect } from 'chai';
2
- import { describe, it } from 'mocha';
3
-
4
- import { setupTest } from '<%= modulePrefix %>/tests/helpers';
5
-
6
- describe('<%= friendlyTestDescription %>', function () {
7
- setupTest();
8
-
9
- // Replace this with your real tests.
10
- it('exists', function () {
11
- let store = this.owner.lookup('service:store');
12
- let model = store.createRecord('<%= dasherizedModuleName %>', {});
13
- expect(model).to.be.ok;
14
- });
15
- });