@eflexsystems/ember-tracked-validations
Version:
Ember computed property based validation library
16 lines (13 loc) • 406 B
JavaScript
import { expect } from 'chai';
import { describe, it } from 'mocha';
import { setupTest } from 'ember-mocha';
describe('Unit | Validator | <%= dasherizedModuleName %>', function () {
setupTest();
// Replace this with your real tests.
it('exists', function () {
const validator = this.owner.lookup(
'validator:<%= dasherizedModuleName %>',
);
expect(validator).to.be.ok;
});
});