ran npm run tester and test files generated

This commit is contained in:
King
2018-02-12 16:38:13 -05:00
parent 1ec390d724
commit d75bdd9805
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,13 @@
const test = require('tape');
const permuteAll = require('./permuteAll.js');
test('Testing permuteAll', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof permuteAll === 'function', 'permuteAll is a Function');
//t.deepEqual(permuteAll(args..), 'Expected');
//t.equal(permuteAll(args..), 'Expected');
//t.false(permuteAll(args..), 'Expected');
//t.throws(permuteAll(args..), 'Expected');
t.end();
});