mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-23 10:53:34 +03:00
21 lines
388 B
JavaScript
21 lines
388 B
JavaScript
|
/* jshint expr:true */
|
||
|
import { expect } from 'chai';
|
||
|
import {
|
||
|
describeModule,
|
||
|
it
|
||
|
} from 'ember-mocha';
|
||
|
|
||
|
describeModule(
|
||
|
'route:subscribers',
|
||
|
'Unit: Route: subscribers',
|
||
|
{
|
||
|
needs: ['service:notifications']
|
||
|
},
|
||
|
function() {
|
||
|
it('exists', function() {
|
||
|
let route = this.subject();
|
||
|
expect(route).to.be.ok;
|
||
|
});
|
||
|
}
|
||
|
);
|