UNPKG

inc-validation

Version:
11 lines (8 loc) 266 B
'use strict'; var index = require('./index.js'); test('Nationalcode must be valid', function () { expect(index.isValid('1111111111')).toBe(true); }); test('Nationalcode must not be valid', function () { expect(index.isValid('7512698452')).toBe(false); });