mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
35 lines
850 B
JavaScript
35 lines
850 B
JavaScript
import WizardField from 'wizard/models/wizard-field';
|
|
|
|
moduleFor("model:wizard-field");
|
|
|
|
test('basic state', assert => {
|
|
const w = WizardField.create({ type: 'text' });
|
|
assert.ok(w.get('unchecked'));
|
|
assert.ok(!w.get('valid'));
|
|
assert.ok(!w.get('invalid'));
|
|
});
|
|
|
|
test('text - required - validation', assert => {
|
|
const w = WizardField.create({ type: 'text', required: true });
|
|
assert.ok(w.get('unchecked'));
|
|
|
|
w.check();
|
|
assert.ok(!w.get('unchecked'));
|
|
assert.ok(!w.get('valid'));
|
|
assert.ok(w.get('invalid'));
|
|
|
|
w.set('value', 'a value');
|
|
w.check();
|
|
assert.ok(!w.get('unchecked'));
|
|
assert.ok(w.get('valid'));
|
|
assert.ok(!w.get('invalid'));
|
|
});
|
|
|
|
test('text - optional - validation', assert => {
|
|
const f = WizardField.create({ type: 'text' });
|
|
assert.ok(f.get('unchecked'));
|
|
|
|
f.check();
|
|
assert.ok(f.get('valid'));
|
|
});
|