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

grep.fixture.js « options « 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: 94785dc7db5616ac401ed21d51e6fcb2c91a84e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
describe('grep', function() {
  describe('Match', function() {
    it('should run', function(){});
    it('should also run', function() {});
  });

  describe('match', function() {
    it('should run', function(){});
    it('should also run', function() {});
  });

  describe('fail', function() {
    it('should not be ran', function() {
      throw new Error('Spec should not run');
    });
  });
});