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

grep.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: 6c5a83aeb5ae33ccaefe192b6df9e6f2bcf5658f (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
99
100
101
102
103
104
105
106
107
108
109
110
'use strict';

// numbers
describe('21', function () {
  it('1', function () {
    assert(true);
  });
  it('2', function () {
    assert(true);
  });
});
// symbols
describe('@Array', function () {
  it('.pop()', function () {
    assert(true);
  });
  it('.push()', function () {
    assert(true);
  });
  it('.length', function () {
    assert(true);
  });
});

describe('@Function', function () {
  it('.call()', function () {
    assert(true);
  });
  it('.apply()', function () {
    assert(true);
  });
  it('.length', function () {
    assert(true);
  });
  it('.name', function () {
    assert(true);
  });
  it('.prototype', function () {
    assert(true);
  });
});

// url with hashtags
describe('#Services', function () {
  describe('#http', function () {
    it('.createClient()', function () {
      assert(true);
    });
    it('.Server()', function () {
      assert(true);
    });
  });
  describe('#crypto', function () {
    it('.randomBytes()', function () {
      assert(true);
    });
    it('.Hmac()', function () {
      assert(true);
    });
  });
});

// Uppercase
describe('CONSTANTS', function () {
  it('.STATUS_CODES', function () {
    assert(true);
  });
});

// Dates
describe('Date:', function () {
  it('01/02/2015', function () {
    assert(true);
  });
  it('01/03/2015', function () {
    assert(true);
  });
  it('01/06/2015', function () {
    assert(true);
  });
});

// etc..
describe('booking/summary', function () {
  it('should be run last', function () {
    assert(true);
  });
});

describe('component/booking/summary', function () {
  it('should be run second', function () {
    assert(true);
  });
});

describe('component/booking/intro', function () {
  it('should be run first', function () {
    assert(true);
  });
});

describe('contains numbers', function () {
  it('should run if the number 92 matching', function () {
    assert(true);
  });

  it('should run if the number 8 matching', function () {
    assert(true);
  });
});