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

skip-sync-beforeEach.fixture.js « pending « 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: 0bd155ba55977def1501e0ea6f02436ce291f60c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict';

describe('skip in beforeEach', function () {
  beforeEach(function () {
    this.skip();
  });

  it('should never run this test', function () {
    throw new Error('never thrown');
  });

  it('should never run this test', function () {
    throw new Error('never thrown');
  });
});