515bf1cc14
no issue - Added `/explore` route which requires min. Admin and is behind a feature flag - Fetches Admin API key and ID to create a token and return back to Ghost Explore with the correct query params - Fullscreen UI
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
describe('Unit | Route | explore', function () {
|
|
setupTest();
|
|
|
|
it('exists', function () {
|
|
let route = this.owner.lookup('route:explore');
|
|
expect(route).to.be.ok;
|
|
});
|
|
});
|