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

hook-timeout.spec.js « test « mocha-3.1.0 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 155c1e95a6efe0c8c7cc45135a173e56cfc0fe22 (plain)
1
2
3
4
5
6
7
8
before(function(done){
  this.timeout(100);
  setTimeout(done, 50);
})

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