File: test/postRules/all.js

Recommend this page to a friend!
  Classes of Harcharan Singh   Node Input Validator   test/postRules/all.js   Download  
File: test/postRules/all.js
Role: Example script
Content type: text/plain
Description: Example script
Class: Node Input Validator
Validate submitted input values in Node.js
Author: By
Last change: Update of test/postRules/all.js
Date: 2 years ago
Size: 615 bytes
 

Contents

Class file image Download
const assert = require('assert'); const { Validator } = require('../../lib/index'); describe('all', () => { it('should return true when all fields exists', async () => { const v = new Validator({ field1: '1', field2: '2', field3: '3' }, { '*': 'all:field1,field2,field3' }); const matched = await v.check(); assert.equal(matched, true); }); it('should return false when there is one field missing', async () => { const v = new Validator({ field1: '1', field2: '2' }, { '*': 'all:field1,field2,field3' }); const matched = await v.check(); assert.equal(matched, false); }); });