10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
import { moduleFor, test } from 'ember-qunit';
|
|
|
|
moduleFor('route:collections', 'Unit | Route | collections', {
|
|
unit: true,
|
|
});
|
|
|
|
test('it exists', function(assert) {
|
|
const route = this.subject();
|
|
assert.ok(route);
|
|
});
|