mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 02:41:50 +03:00
16 lines
379 B
JavaScript
16 lines
379 B
JavaScript
|
import {describe, it} from 'mocha';
|
||
|
import {expect} from 'chai';
|
||
|
import {setupTest} from 'ember-mocha';
|
||
|
|
||
|
describe('Unit: Service: ui', function() {
|
||
|
setupTest('service:ui', {
|
||
|
needs: ['service:dropdown']
|
||
|
});
|
||
|
|
||
|
// Replace this with your real tests.
|
||
|
it('exists', function() {
|
||
|
let service = this.subject();
|
||
|
expect(service).to.be.ok;
|
||
|
});
|
||
|
});
|