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

multiple-done-specs.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: a8ae6d1ac41e1c55690bf9d2ba312b256bf3bcba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
'use strict';

describe('suite', function () {
  it('test1', function (done) {
    done();
    setTimeout(done, 10);
  });

  it('test2', function (done) {
    setTimeout(done, 20);
  });
});