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

bail.fixture.js « options « 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: 32d17e9aa8d527dcdc9dd002f64b5f8398ed580e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
describe('suite1', function() {
  it('should display this spec', function() {});

  it('should only display this error', function(done) {
    throw new Error('this should be displayed');
  });

  it('should not display this error', function(done) {
    throw new Error('this should not be displayed');
  });
});

describe('suite2', function() {
  before(function(done) {
    throw new Error('this hook should not be displayed');
  });

  it('should not display this error', function(done) {
    throw new Error('this should not be displayed');
  });
});