diff --git a/ui-v2/tests/unit/routes/dc/intentions/create-test.js b/ui-v2/tests/unit/routes/dc/intentions/create-test.js index 61b375b6f2..45f688c8ec 100644 --- a/ui-v2/tests/unit/routes/dc/intentions/create-test.js +++ b/ui-v2/tests/unit/routes/dc/intentions/create-test.js @@ -2,7 +2,7 @@ import { moduleFor, test } from 'ember-qunit'; moduleFor('route:dc/intentions/create', 'Unit | Route | dc/intentions/create', { // Specify the other units that are required for this test. - needs: ['service:intentions', 'service:feedback', 'service:flashMessages'], + needs: ['service:intentions', 'service:feedback', 'service:logger', 'service:flashMessages'], }); test('it exists', function(assert) { diff --git a/ui-v2/tests/unit/routes/dc/intentions/edit-test.js b/ui-v2/tests/unit/routes/dc/intentions/edit-test.js index 0d7b449f06..9bb112394a 100644 --- a/ui-v2/tests/unit/routes/dc/intentions/edit-test.js +++ b/ui-v2/tests/unit/routes/dc/intentions/edit-test.js @@ -2,7 +2,7 @@ import { moduleFor, test } from 'ember-qunit'; moduleFor('route:dc/intentions/edit', 'Unit | Route | dc/intentions/edit', { // Specify the other units that are required for this test. - needs: ['service:intentions', 'service:feedback', 'service:flashMessages'], + needs: ['service:intentions', 'service:feedback', 'service:logger', 'service:flashMessages'], }); test('it exists', function(assert) { diff --git a/ui-v2/tests/unit/routes/dc/intentions/index-test.js b/ui-v2/tests/unit/routes/dc/intentions/index-test.js index 0fb1bacb33..1d4d6c3e8c 100644 --- a/ui-v2/tests/unit/routes/dc/intentions/index-test.js +++ b/ui-v2/tests/unit/routes/dc/intentions/index-test.js @@ -2,7 +2,7 @@ import { moduleFor, test } from 'ember-qunit'; moduleFor('route:dc/intentions/index', 'Unit | Route | dc/intentions/index', { // Specify the other units that are required for this test. - needs: ['service:intentions', 'service:feedback', 'service:flashMessages'], + needs: ['service:intentions', 'service:feedback', 'service:logger', 'service:flashMessages'], }); test('it exists', function(assert) { diff --git a/ui-v2/tests/unit/services/logger-test.js b/ui-v2/tests/unit/services/logger-test.js new file mode 100644 index 0000000000..e974494e03 --- /dev/null +++ b/ui-v2/tests/unit/services/logger-test.js @@ -0,0 +1,12 @@ +import { moduleFor, test } from 'ember-qunit'; + +moduleFor('service:logger', 'Unit | Service | logger', { + // Specify the other units that are required for this test. + // needs: ['service:foo'] +}); + +// Replace this with your real tests. +test('it exists', function(assert) { + let service = this.subject(); + assert.ok(service); +});