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

multiple-done-before.fixture.js « fixtures « integration « 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: 80d4adb61afbeac00933e032fc4a7decc64a4a70 (plain)
1
2
3
4
5
6
7
8
9
10
describe('suite', function() {
  before(function(done) {
    setTimeout(done, 10);
    setTimeout(done, 30);
  });

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