node-input-validator
Version:
validation library for nodejs, inspired by laravel.
34 lines (24 loc) • 850 B
JavaScript
const assert = require('assert');
const Validator = require('../../index');
describe('#same', () => {
it('should pass', async () => {
const v = new Validator(
{ password: '000000', confirm_password: '000000' },
{ password: 'required', confirm_password: 'required|same:password' }
);
const matched = await v.check();
assert.equal(matched, true);
});
it('should fail', async () => {
const v = new Validator(
{ password: '000000', confirm_password: '123456' },
{ password: 'required', confirm_password: 'required|same:password' }
);
const matched = await v.check();
assert.equal(matched, false);
assert.equal(
v.errors.confirm_password.message,
v.parseExistingMessageOnly('same', 'confirm_password', '', 'password')
);
});
});