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

ui.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: 159cab6d95663bdb4c70d185955f16385964a55a (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
'use strict';

// 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);
  });
});