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/integration/fixtures/options/only/qunit.fixture.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/qunit.fixture.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/qunit.fixture.js b/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/qunit.fixture.js
new file mode 100644
index 0000000000..9fa95f440b
--- /dev/null
+++ b/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/qunit.fixture.js
@@ -0,0 +1,26 @@
+suite.only('should run all tests in this suite');
+
+test('should run this test #1', function() {});
+
+test('should run this test #2', function() {});
+
+test('should run this test #3', function() {});
+
+test('should run this test #4', function() {});
+
+test('should run this test #5', function() {});
+
+
+suite('should not run any of this suite\'s tests');
+
+test('should not run this test', function() {
+ (false).should.equal(true);
+});
+
+test('should not run this test', function() {
+ (false).should.equal(true);
+});
+
+test('should not run this test', function() {
+ (false).should.equal(true);
+}); \ No newline at end of file