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

ui.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: 48236e94974b8c8a6163467a032d3fed31d0f7ad (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
// test titles containing regex-conflicting characters

// leading $
describe('$.jQuery', function() {
  // parens
  describe('.on()', function () {
    it('should set an event', function() {
      assert(true);
    });
  });

  describe('.off()', function () {
    it('should remove an event', function () {

    });
  });
});

// another generic describe block to verify it is absent
// when greeping on $.jQuery
describe('@Array', function() {
  it('.pop()', function() {
    assert(true);
  });
  it('.push()', function() {
    assert(true);
  });
  it('.length', function() {
    assert(true);
  });
});