Ghost/ghost/admin/tests/unit/helpers/is-equal-test.js
Kevin Ansfield a85f5fae35 Switch to eslint-plugin-ghost extending plugin:ghost/ember
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`
2018-01-12 12:17:56 +00:00

18 lines
343 B
JavaScript

import {
describe,
it
} from 'mocha';
import {expect} from 'chai';
import {
isEqual
} from 'ghost-admin/helpers/is-equal';
describe('Unit: Helper: is-equal', function () {
// Replace this with your real tests.
it('works', function () {
let result = isEqual([42, 42]);
expect(result).to.be.ok;
});
});