Files
30-seconds-of-code/test/toCurrency/toCurrency.test.js
2018-01-27 10:17:50 -05:00

13 lines
497 B
JavaScript

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