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

before-hook-error-tip.fixture.js « hooks « 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: 567dfef26bcbc08f464519c8ce96908eeb6e39fc (plain)
1
2
3
4
5
6
7
8
9
describe('spec 1', function() {
  it('should not blame me', function() { });
});
describe('spec 2', function() {
  before(function() {
    throw new Error('before hook error');
  });
  it('skipped');
});