mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 08:31:43 +03:00
753681e9e9
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: []`
13 lines
294 B
JavaScript
13 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');
|
|
});
|
|
});
|