Ghost/ghost/admin/tests/unit/routes/collections-test.js

13 lines
311 B
JavaScript
Raw Normal View History

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;
});
});