Travis build: 1510 [cron]

This commit is contained in:
30secondsofcode
2018-02-02 20:17:05 +00:00
parent ef346fcc91
commit 2cbc41ddeb
10 changed files with 71 additions and 8 deletions

View File

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