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

many.spec.js « misc « acceptance « 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: 26538bc66e14b665441bf98d6aa6ca324896fb7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Useful for testing SIGINT handler
// use env.big_number to tune iterations so that you have time to ctrl+c

describe('a load of tests', function(){
  it('should fail the first test', function(){
    throw new Error('this should appear in the summary');
  })

  var iterations = (process.env.big_number || 1e7);
  function work() {
    var a = 0;
    for(var i=0; i<iterations; ++i) {
      a += i;
    }
  }

  function addTest() {
    it('should pass test ' + i, function(){
      work();
    })
  }

  for(var i=0; i<500; ++i) {
    addTest();
  }

})