7236b2d2b3
Route, controller, links, selected property/styles, etc.
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
module('Unit | Route | dashboard/contributions/show', function(hooks) {
|
|
setupTest(hooks);
|
|
|
|
test('it exists', function(assert) {
|
|
let route = this.owner.lookup('route:dashboard/contributions/show');
|
|
assert.ok(route);
|
|
});
|
|
});
|