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

skip-sync-spec.fixture.js « pending « 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: e2bbb739b3a3de5ccba6852890ada5cecd30a1e5 (plain)
1
2
3
4
5
6
7
8
9
10
describe('skip in test', function() {
  it('should skip immediately', function() {
    this.skip();
    throw new Error('never thrown');
  });

  it('should run other tests in the suite', function() {
    // Do nothing
  });
});