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: []`
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
import {
|
|
describeModel,
|
|
it
|
|
} from 'ember-mocha';
|
|
|
|
describeModel('setting', 'Unit: Model: setting', function () {
|
|
it('has a validation type of "setting"', function () {
|
|
var model = this.subject();
|
|
|
|
expect(model.get('validationType')).to.equal('setting');
|
|
});
|
|
});
|