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

large.spec.js « browser « 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: 56757eae275dc3062adb39056b9af47a9db96b35 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
var n = 30;
while (n--) {
  describe('Array ' + n, function(){
    var arr;

    beforeEach(function(){
      arr = [1,2,3];
    })

    describe('#indexOf()', function(){
      it('should return -1 when the value is not present', function(){
        assert(-1 == arr.indexOf(5));
      })

      it('should return the correct index when the value is present', function(done){
        assert(0 == arr.indexOf(1));
        assert(1 == arr.indexOf(2));
        done();
      })
    })
  })
}

describe('something', function(){
  it('should provide a useful error', function(done){
    setTimeout(function(){
      throw new Error('boom');
      done();
    }, 1);
  })

  it('should provide an even better error on phantomjs', function(done){
    setTimeout(function(){
      var AssertionError = function(message, actual, expected) {
        this.message = message;
        this.actual = actual;
        this.expected = expected;
        this.showDiff = true;
      };
      AssertionError.prototype = Object.create(Error.prototype);
      AssertionError.prototype.name = 'AssertionError';
      AssertionError.prototype.constructor = AssertionError;

      mocha.throwError(new AssertionError('kabooom', 'text with a typo', 'text without a typo'));
      done();
    }, 1);
  })
})