Files
30-seconds-of-code/test/mask/mask.test.js
Angelos Chalaris 4f7da1be9b Test migration to jest by hand
Apparently using regular expressions is way easier.
2018-06-18 15:15:56 +03:00

12 lines
540 B
JavaScript

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");