cc4ff8c6d4
refs https://github.com/TryGhost/Team/issues/3168 - This is basic scaffolding for collection resources UI in Admin. For the most part it's a copy-paste of tags code with slight modifications to fit the collections usecase
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
describe('Unit | Route | collections', function () {
|
|
setupTest();
|
|
|
|
it('exists', function () {
|
|
let route = this.owner.lookup('route:collections');
|
|
expect(route).to.be.ok;
|
|
});
|
|
});
|