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

issue-2315.js « regression « 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: cdfb2010595f4f0cbca7eafb6cfaa17c6c4284be (plain)
1
2
3
4
5
6
7
8
9
describe('issue-2315: cannot read property currentRetry of undefined', function () {
  before(function () {
    process.nextTick(function () {
      throw new Error();
    });
  });

  it('something', function () {});
});