c4188c1a9e
no issue - Added Ghost Explore screen behind alpha flag - Moved existing /explore route to /explore/connect which we'll redirect to for outside requests - Added iframe communication with Ghost Explore App
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 | explore', function () {
|
|
setupTest();
|
|
|
|
it('exists', function () {
|
|
let route = this.owner.lookup('route:explore.connect');
|
|
expect(route).to.be.ok;
|
|
});
|
|
});
|