Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hook-timeout.spec.js « test « mocha-3.1.2 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c16c3011fb56f72d8ce62bb2d107b47067ae89eb (plain)
1
2
3
4
5
6
7
8
9
10
'use strict';

before(function (done) {
  this.timeout(100);
  setTimeout(done, 50);
});

it('should work', function (done) {
  done();
});