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

nested.fixture.js « retries « 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: 43c40cb236c2931b5cce64bca150dd512ba27277 (plain)
1
2
3
4
5
6
7
8
9
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');
    });
  });
});