mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
42166c8d9f
- Refactor to handle deprecations including removal of all Views, ArrayControllers, and ItemControllers.
19 lines
340 B
JavaScript
19 lines
340 B
JavaScript
/* 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;
|
|
});
|
|
});
|