Add the nav-state-test.js file to the repo even though it does not do anything, yet.

This commit is contained in:
Leonard Smith 2020-12-18 12:57:31 -06:00
parent 0f8604e224
commit 2cbf0d8afb
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import { module, test } from 'qunit';
import { setupTest } from 'ember-qunit';
module('Unit | Service | nav-state', function(hooks) {
setupTest(hooks);
// TODO: Replace this with your real tests.
test('it exists', function(assert) {
let service = this.owner.lookup('service:nav-state');
assert.ok(service);
});
});