Ghost/ghost/admin/tests/unit/models/setting-test.js
Kevin Ansfield 1520122483 Refactored deprecated usage of setupTest* methods
no issue

- https://github.com/emberjs/ember-mocha/blob/master/docs/migration.md#upgrading-to-the-new-testing-apis
- deleted tests files which had no specific tests
- migrated unskipped component unit tests to integration tests
2019-05-13 15:31:32 +01:00

14 lines
387 B
JavaScript

import {describe, it} from 'mocha';
import {expect} from 'chai';
import {setupTest} from 'ember-mocha';
describe('Unit: Model: setting', function () {
setupTest();
it('has a validation type of "setting"', function () {
let model = this.owner.lookup('service:store').createRecord('setting');
expect(model.get('validationType')).to.equal('setting');
});
});