Skip to content

Commit e9c8e3e

Browse files
committed
Fix test
1 parent d208de5 commit e9c8e3e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/unit/adapters/issue-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { moduleFor, test } from 'ember-qunit';
22

33
moduleFor('adapter:issue', 'Unit | Adapter | issue', {
44
// Specify the other units that are required for this test.
5-
// needs: ['serializer:foo']
5+
needs: ['model:repository']
66
});
77

88
// Replace this with your real tests.

tests/unit/models/issue-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { moduleForModel, test } from 'ember-qunit';
22

33
moduleForModel('issue', 'Unit | Model | issue', {
44
// Specify the other units that are required for this test.
5-
needs: []
5+
needs: ['model:repository']
66
});
77

88
test('it exists', function(assert) {

tests/unit/serializers/application-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { moduleForModel, test } from 'ember-qunit';
22

33
moduleForModel('issue', 'Unit | Serializer | application', {
44
// Specify the other units that are required for this test.
5-
needs: ['serializer:application']
5+
needs: ['serializer:application', 'model:repository']
66
});
77

88
// Replace this with your real tests.

tests/unit/serializers/issue-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { moduleForModel, test } from 'ember-qunit';
22

33
moduleForModel('issue', 'Unit | Serializer | issue', {
44
// Specify the other units that are required for this test.
5-
needs: ['serializer:issue']
5+
needs: ['serializer:issue', 'model:repository']
66
});
77

88
// Replace this with your real tests.

0 commit comments

Comments
 (0)