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

tdd.fixture.js « only « options « fixtures « integration « 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: 987ee6bfbae49fbc942e91df2a97999b9bff2a31 (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
'use strict';

suite.only('should run all tests in this tdd suite', function () {
  test('should run this test #1', function () {});

  test('should run this test #2', function () {});

  test('should run this test #3', function () {});

  test('should run this test #4', function () {});
});

suite('should not run this suite', function () {
  test('should not run this test', function () {
    (true).should.equal(false);
  });

  test('should not run this test', function () {
    (true).should.equal(false);
  });

  test('should not run this test', function () {
    (true).should.equal(false);
  });
});

suite.only('should run this suite too', function () {
  suite('should run this nested suite', function () {
    test('should run this test', function () {});

    test('should run this test', function () {});

    test('should run this test', function () {});

    test('should run this test', function () {});
  });
});