Files
30-seconds-of-code/test/times/times.test.js
Angelos Chalaris 9217979f80 Updated testing with proper indentation
Uses two spaces instead of hard tabs.
2018-01-24 17:53:36 +02:00

13 lines
452 B
JavaScript

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