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

delay-fail.fixture.js « options « 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: 644cbc028169989bbc54cf283e27fbbff8fa5d2e (plain)
1
2
3
4
5
6
7
8
'use strict';

setTimeout(function () {
  throw new Error('oops');
  /* eslint no-unreachable: off */
  it('test', function () {});
  run();
}, 100);