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.0/test/acceptance/misc/only/global')
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/bdd.spec.js12
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/qunit.spec.js12
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/tdd.spec.js12
3 files changed, 0 insertions, 36 deletions
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/bdd.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/bdd.spec.js
deleted file mode 100644
index e923876f84..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/bdd.spec.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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);
-}); \ No newline at end of file
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/qunit.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/qunit.spec.js
deleted file mode 100644
index 59ad72c3bf..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/qunit.spec.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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);
-}); \ No newline at end of file
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/tdd.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/tdd.spec.js
deleted file mode 100644
index 08d456848b..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/misc/only/global/tdd.spec.js
+++ /dev/null
@@ -1,12 +0,0 @@
-// 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);
-}); \ No newline at end of file