Travis build: 1308 [cron]

This commit is contained in:
30secondsofcode
2018-01-18 20:09:27 +00:00
parent c1bc3f9f71
commit 9af01d9d59
12 changed files with 115 additions and 47 deletions

13
test/atob/atob.test.js Normal file
View File

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