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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/mocha-3.1.2/test/acceptance/misc/only/global/bdd.spec.js')
-rw-r--r--tests/lib/mocha-3.1.2/test/acceptance/misc/only/global/bdd.spec.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/lib/mocha-3.1.2/test/acceptance/misc/only/global/bdd.spec.js b/tests/lib/mocha-3.1.2/test/acceptance/misc/only/global/bdd.spec.js
new file mode 100644
index 0000000000..1fc3d14384
--- /dev/null
+++ b/tests/lib/mocha-3.1.2/test/acceptance/misc/only/global/bdd.spec.js
@@ -0,0 +1,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);
+});