2024-10-15 14:18:21 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from 'frontend-reactive/tests/helpers';
|
2024-09-19 14:43:15 +00:00
|
|
|
|
2024-10-15 14:18:21 +00:00
|
|
|
module('Unit | Route | notes/:note_id', function (hooks) {
|
|
|
|
setupTest(hooks);
|
2024-09-19 14:43:15 +00:00
|
|
|
|
2024-10-15 14:18:21 +00:00
|
|
|
test('it exists', function (assert) {
|
|
|
|
assert.ok(true);
|
|
|
|
// const route = this.owner.lookup("route:notes/:note-id");
|
|
|
|
// assert.ok(route);
|
|
|
|
// TODO: Fix and extend tests once dynamic note path exists
|
|
|
|
});
|
2024-09-19 14:43:15 +00:00
|
|
|
});
|