a85f5fae35
no issue - fix lint errors in lib/gh-koenig - fix ghost:base eslint errors - update ember plugin refs, remove ember-suave plugin refs - remove old jshint refs - add `lint:js` script - switch to `eslint-plugin-ghost` extending `plugin:ghost/ember`
16 lines
435 B
JavaScript
16 lines
435 B
JavaScript
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
describe('Unit: Controller: subscribers', function () {
|
|
setupTest('controller:subscribers', {
|
|
needs: ['service:notifications', 'service:session']
|
|
});
|
|
|
|
// Replace this with your real tests.
|
|
it('exists', function () {
|
|
let controller = this.subject();
|
|
expect(controller).to.be.ok;
|
|
});
|
|
});
|