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

before-hook-error-tip.fixture.js « hooks « 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: 64df7315737a103462f0bba93b0b289515448e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

describe('spec 1', function () {
  it('should not blame me', function () { });
});
describe('spec 2', function () {
  before(function () {
    throw new Error('before hook error');
  });
  it('skipped');
});