UNPKG

choma

Version:

Random ordering for mocha

23 lines (18 loc) 368 B
/*eslint-env mocha */ const assert = require('assert'); describe('file 2 suite 1', function() { it('test E', function() { assert.ok(true); }); it('test F', function() { assert.ok(true); }); }); describe('file 2 suite 2', function() { it('test G', function() { assert.ok(true); }); it('test H', function() { assert.ok(true); }); });