mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
739443bb72
no issue - standardize on "{TestType}: {ModuleType}: {module-name}" for test description strings - standardize on `{module-name}-test.js` for test file names - fix deprecation notices for ember component unit tests without explicit `unit: test` or `needs: []`
18 lines
360 B
JavaScript
18 lines
360 B
JavaScript
/* jshint expr:true */
|
|
import {expect} from 'chai';
|
|
import {
|
|
describe,
|
|
it
|
|
} from 'mocha';
|
|
import {
|
|
isEqual
|
|
} from 'ghost/helpers/is-equal';
|
|
|
|
describe('Unit: Helper: is-equal', function () {
|
|
// Replace this with your real tests.
|
|
it('works', function () {
|
|
var result = isEqual([42, 42]);
|
|
|
|
expect(result).to.be.ok;
|
|
});
|
|
});
|