Migrated tests to jest
Used jest-codemods to migrate, will have to pass everything by hand before we can merge.
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
const luhnCheck = num => {
|
||||
let arr = (num + '')
|
||||
.split('')
|
||||
.reverse()
|
||||
.map(x => parseInt(x));
|
||||
let lastDigit = arr.splice(0, 1)[0];
|
||||
let sum = arr.reduce((acc, val, i) => (i % 2 !== 0 ? acc + val : acc + (val * 2) % 9 || 9), 0);
|
||||
sum += lastDigit;
|
||||
return sum % 10 === 0;
|
||||
};
|
||||
module.exports = luhnCheck;
|
||||
@@ -1,16 +0,0 @@
|
||||
const test = require('tape');
|
||||
const luhnCheck = require('./luhnCheck.js');
|
||||
|
||||
test('Testing luhnCheck', (t) => {
|
||||
//For more information on all the methods supported by tape
|
||||
//Please go to https://github.com/substack/tape
|
||||
t.true(typeof luhnCheck === 'function', 'luhnCheck is a Function');
|
||||
t.equal(luhnCheck(6011329933655299), false, "validates identification number");
|
||||
t.equal(luhnCheck('4485275742308327'), true, "validates identification number");
|
||||
t.equal(luhnCheck(123456789), false, "validates identification number");
|
||||
//t.deepEqual(luhnCheck(args..), 'Expected');
|
||||
//t.equal(luhnCheck(args..), 'Expected');
|
||||
//t.false(luhnCheck(args..), 'Expected');
|
||||
//t.throws(luhnCheck(args..), 'Expected');
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user