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

nested.fixture.js « retries « 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: 877d519d7fd2cffbfe4b8a2a306ed45f84c679f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

describe('retries', function () {
  this.retries(3);
  describe('nested', function () {
    it('should fail after only 1 retry', function () {
      this.retries(1);
      throw new Error('retry error');
    });
  });
});