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

multiple-done-before.fixture.js « fixtures « integration « 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: 1e1bc71a16ce098b47a4bc28c1c09063b8941d09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

describe('suite', function () {
  before(function (done) {
    setTimeout(done, 10);
    setTimeout(done, 30);
  });

  it('test1', function (done) {
    setTimeout(done, 50);
  });
});