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

bdd.spec.js « global « only « misc « acceptance « 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: 1fc3d14384ca0d4f77eb818f8571c77b5b6a19d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict';

// Root-only test cases
it.only('#Root-Suite, should run this bdd test-case #1', function () {
  (true).should.equal(true);
});

it('#Root-Suite, should not run this bdd test-case #2', function () {
  (false).should.equal(true);
});

it('#Root-Suite, should not run this bdd test-case #3', function () {
  (false).should.equal(true);
});