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

bdd.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: e923876f8450ab03a8def0e4cc0a233359a3e01f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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);
});