Test migration to jest by hand
Apparently using regular expressions is way easier.
This commit is contained in:
11
test/mask/mask.test.js
Normal file
11
test/mask/mask.test.js
Normal file
@ -0,0 +1,11 @@
|
||||
const expect = require('expect');
|
||||
const mask = require('./mask.js');
|
||||
|
||||
|
||||
test('mask is a Function', () => {
|
||||
expect(mask).toBeInstanceOf(Function);
|
||||
});
|
||||
t.equal(mask(1234567890), '******7890', "Replaces all but the last num of characters with the specified mask character");
|
||||
t.equal(mask(1234567890, 3), '*******890', "Replaces all but the last num of characters with the specified mask character");
|
||||
t.equal(mask(1234567890, -4, '$'), '$$$$567890', "Replaces all but the last num of characters with the specified mask character");
|
||||
|
||||
Reference in New Issue
Block a user