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`
18 lines
332 B
JavaScript
18 lines
332 B
JavaScript
import {
|
|
describe,
|
|
it
|
|
} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {
|
|
isNot
|
|
} from 'ghost-admin/helpers/is-not';
|
|
|
|
describe('Unit: Helper: is-not', function () {
|
|
// Replace this with your real tests.
|
|
it('works', function () {
|
|
let result = isNot(false);
|
|
|
|
expect(result).to.be.ok;
|
|
});
|
|
});
|