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

hook-sync-nested.spec.js « 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: b87c22298fbf9b96f8d7b92611259c614f1d5c25 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
describe('serial', function(){
  describe('nested', function(){
    var calls = [];

    beforeEach(function(){
      calls.push('parent before');
      if (this.currentTest) {
        calls.push('parent before test ' + this.currentTest.title);
      }
    })

    afterEach(function(){
      calls.push('parent after');
      if (this.currentTest) {
        calls.push('parent after test ' + this.currentTest.title + ' ' + this.currentTest.state);
      }
    });

    it('foo', function(){
      calls.should.eql([
          'parent before'
        , 'parent before test foo']);
      calls.push('foo');
    })

    it('bar', function(){
      calls.should.eql([
          'parent before'
        , 'parent before test foo'
        , 'foo'
        , 'parent after'
        , 'parent after test foo passed'
        , 'parent before'
        , 'parent before test bar']);
    })

    describe('hooks', function(){
      beforeEach(function(){
        calls.push('before');
        if (this.currentTest) {
          calls.push('before test ' + this.currentTest.title);
        }
      })

      it('one', function(){
        calls.should.eql([
            'parent before'
          , 'parent before test foo'
          , 'foo'
          , 'parent after'
          , 'parent after test foo passed'
          , 'parent before'
          , 'parent before test bar'
          , 'parent after'
          , 'parent after test bar passed'
          , 'parent before'
          , 'parent before test one'
          , 'before'
          , 'before test one']);
        calls.push('one');
      })

      it('two', function(){
        calls.should.eql([
            'parent before'
          , 'parent before test foo'
          , 'foo'
          , 'parent after'
          , 'parent after test foo passed'
          , 'parent before'
          , 'parent before test bar'
          , 'parent after'
          , 'parent after test bar passed'
          , 'parent before'
          , 'parent before test one'
          , 'before'
          , 'before test one'
          , 'one'
          , 'after'
          , 'after test one passed'
          , 'parent after'
          , 'parent after test one passed'
          , 'parent before'
          , 'parent before test two'
          , 'before'
          , 'before test two']);
        calls.push('two');
      });

      afterEach(function(){
        calls.push('after');
        if (this.currentTest) {
          calls.push('after test ' + this.currentTest.title + ' ' + this.currentTest.state);
        }
      })
    })
  })
})