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

qunit.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: 8bc598030da80e5bb85d28978efc3c7841175f46 (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
'use strict';

suite.only('should run all tests in this suite');

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 () {});

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

suite('should not run any of this suite\'s tests');

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

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

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