Files
30-seconds-of-code/test/toOrdinalSuffix/toOrdinalSuffix.test.js
2018-01-09 06:09:49 -05:00

13 lines
534 B
JavaScript

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