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

delay-fail.fixture.js « options « 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: 1475c918d4c533ec9bd28e6ad7bad9ebbf6c8036 (plain)
1
2
3
4
5
setTimeout(function() {
  throw new Error('oops');
  it('test', function() {});
  run();
}, 100);