0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-13 22:41:32 -05:00
ghost/core/client/tests/unit/helpers/is-not-test.js

19 lines
340 B
JavaScript
Raw Normal View History

/* jshint expr:true */
import {expect} from 'chai';
import {
describe,
it
} from 'mocha';
import {
isNot
} from 'ghost/helpers/is-not';
describe('IsNotHelper', function () {
// Replace this with your real tests.
it('works', function () {
var result = isNot(false);
expect(result).to.be.ok;
});
});