Ghost/ghost/admin/tests/unit/routes/explore-test.js
Aileen Nowak 515bf1cc14 Added Ghost Explore UI
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
2022-08-01 11:11:47 +01:00

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