Files
30-seconds-of-code/test/prefix/prefix.test.js
2018-03-12 20:37:13 +00:00

13 lines
461 B
JavaScript

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();
});