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

test.spec.js « 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: 73c09b3b06753038f4b9cd9834ecef57138735d7 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
'use strict';

var mocha = require('../');
var should = require('should');
var Test = mocha.Test;

describe('Test', function () {
  describe('.clone()', function () {
    beforeEach(function () {
      this._test = new Test('To be cloned', function () {});
      this._test._timeout = 3043;
      this._test._slow = 101;
      this._test._enableTimeouts = true;
      this._test._retries = 3;
      this._test._currentRetry = 1;
      this._test._allowedGlobals = ['foo'];
      this._test.parent = 'foo';
      this._test.file = 'bar';
    });

    it('should copy the title', function () {
      this._test.clone().title.should.equal('To be cloned');
    });

    it('should copy the timeout value', function () {
      this._test.clone().timeout().should.equal(3043);
    });

    it('should copy the slow value', function () {
      this._test.clone().slow().should.equal(101);
    });

    it('should copy the enableTimeouts value', function () {
      this._test.clone().enableTimeouts().should.be.true();
    });

    it('should copy the retries value', function () {
      this._test.clone().retries().should.equal(3);
    });

    it('should copy the currentRetry value', function () {
      this._test.clone().currentRetry().should.equal(1);
    });

    it('should copy the globals value', function () {
      this._test.clone().globals().should.not.be.empty();
    });

    it('should copy the parent value', function () {
      this._test.clone().parent.should.equal('foo');
    });

    it('should copy the file value', function () {
      this._test.clone().file.should.equal('bar');
    });
  });

  describe('.isPending()', function () {
    beforeEach(function () {
      this._test = new Test('Is it skipped', function () {});
    });

    it('should not be pending by default', function () {
      should(this._test.isPending()).not.be.ok();
    });

    it('should be pending when marked as such', function () {
      this._test.pending = true;
      should(this._test.isPending()).be.ok();
    });

    it('should be pending when its parent is pending', function () {
      this._test.parent = { isPending: function () { return true; } };
      should(this._test.isPending()).be.ok();
    });
  });
});