Travis build: 1810 [cron]

This commit is contained in:
30secondsofcode
2018-03-12 20:37:13 +00:00
parent a56367a2d7
commit 6b47b18053
3 changed files with 30 additions and 4 deletions

View File

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