-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.js
41 lines (40 loc) · 1.49 KB
/
tests.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const {testCountWords} = require('./tests/countWords.js');
const {testFindPattern} = require('./tests/findPattern.js');
const {testHasDigits} = require('./tests/hasDigits.js');
const {testHasLowerCase} = require('./tests/hasLowerCase.js');
const {testHasSpecialChars} = require('./tests/hasSpecialChars.js');
const {testHasUpperCase} = require('./tests/hasUpperCase.js');
const {testIsCreditCard} = require('./tests/isCreditCard.js');
const {testIsDate} = require('./tests/isDate.js');
const {testIsEmail} = require('./tests/isEmail.js');
const {testIsIBAN} = require('./tests/isIBAN.js');
const {testIsIP} = require('./tests/isIP.js');
const {testIsLengthBetween} = require('./tests/isLengthBetween.js');
const {testIsPalindrome} = require('./tests/isPalindrome.js');
const {testIsPhoneNumber} = require('./tests/isPhoneNumber.js');
const {testIsPostalCode} = require('./tests/isPostalCode.js');
const {testIsSSN} = require('./tests/isSSN.js');
const {testIsTime} = require('./tests/isTime.js');
const {testIsURL} = require('./tests/isURL.js');
const {testMatchExact} = require('./tests/matchExact.js');
const {testReplacePattern} = require('./tests/replacePattern.js');
testCountWords();
testFindPattern();
testHasDigits();
testHasLowerCase();
testHasSpecialChars();
testHasUpperCase();
testIsCreditCard();
testIsDate();
testIsEmail();
testIsIBAN();
testIsIP();
testIsLengthBetween();
testIsPalindrome();
testIsPhoneNumber();
testIsPostalCode();
testIsSSN();
testIsTime();
testIsURL();
testMatchExact();
testReplacePattern();