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

qunit.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: 59ad72c3bf27a5241271f6c0baaca42cbd51544a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Root-only test cases
test.only('#Root-Suite, should run this qunit test-case #1', function() {
  (true).should.equal(true);
});

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

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