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

large.spec.js « browser « test « mocha-3.1.2 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7dfa62f2a2f65284e3024dc89ae53ebec726b872 (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
49
'use strict';

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(arr.indexOf(5) === -1);
      });

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

describe('something', function () {
  it('should provide a useful error', function (done) {
    setTimeout(function () {
      throw new Error('boom');
    }, 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);
  });
});