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

tdd.spec.js « global « only « misc « acceptance « 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: 08d456848be19a3505789128219ca860260fa4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Root-only test cases
test.only('#Root-Suite, should run this tdd test-case #1', function() {
  (true).should.equal(true);
});

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

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