Tests for UUID generators

This commit is contained in:
Angelos Chalaris
2018-02-09 13:21:06 +02:00
parent 41f0ae31eb
commit 0bff6cbd6f
3 changed files with 11 additions and 5 deletions

View File

@ -5,9 +5,10 @@ test('Testing UUIDGeneratorBrowser', (t) => {
//For more information on all the methods supported by tape
//Please go to https://github.com/substack/tape
t.true(typeof UUIDGeneratorBrowser === 'function', 'UUIDGeneratorBrowser is a Function');
t.pass('Tested 09/02/2018 by @chalarangelo');
//t.deepEqual(UUIDGeneratorBrowser(args..), 'Expected');
//t.equal(UUIDGeneratorBrowser(args..), 'Expected');
//t.false(UUIDGeneratorBrowser(args..), 'Expected');
//t.throws(UUIDGeneratorBrowser(args..), 'Expected');
t.end();
});
});