Ghost/ghost/admin/tests/unit/helpers/is-not-test.js

19 lines
355 B
JavaScript
Raw Normal View History

/* jshint expr:true */
import {expect} from 'chai';
import {
describe,
it
} from 'mocha';
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;
});
});