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

skip-async-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: 6096c59d2ab29c2aac9908b7c206b9d5b42fa1d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
describe('skip in test', function() {
  it('should skip async', function(done) {
    var self = this;
    setTimeout(function() {
      self.skip();
    }, 50);
  });

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