"use strict"; import { guid } from "../src/guid"; import { checks } from "../src/checks"; import * as chai from 'chai'; const expect = chai.expect; // Check that we are fine describe('guid', function() { it('.guid();', function(done) { for (let i = 0; i < 100; i++) { expect(checks.isValidGUID(guid())).to.be.true; } done(); }); });