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

issue-2315.js « regression « 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: fe18841d1c4fc858d9e4445b4ad2163e7549f6c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

describe('issue-2315: cannot read property currentRetry of undefined', function () {
  before(function () {
    process.nextTick(function () {
      throw new Error();
    });
  });

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