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/bdd.fixture.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/bdd.fixture.js71
1 files changed, 0 insertions, 71 deletions
diff --git a/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/bdd.fixture.js b/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/bdd.fixture.js
deleted file mode 100644
index 783ce19b0b..0000000000
--- a/tests/lib/mocha-3.1.0/test/integration/fixtures/options/only/bdd.fixture.js
+++ /dev/null
@@ -1,71 +0,0 @@
-describe.only('should run this suite', function() {
- it('should run this test', function() {});
-
- it('should run this test', function() {});
-
- it('should run this test', function() {});
-});
-
-describe('should not run this suite', function() {
- it('should not run this test', function() {
- (true).should.equal(false);
- });
-
- it('should not run this test', function() {
- (true).should.equal(false);
- });
-
- it('should not run this test', function() {
- (true).should.equal(false);
- });
-});
-
-describe.only('should run this suite too', function() {
- describe('should run this nested suite', function () {
- it('should run this test', function() {});
-
- it('should run this test', function() {});
-
- it('should run this test', function() {});
- });
-});
-
-describe.only('should run this suite, even', function() {
- describe('should run this nested suite, even', function () {
- describe('should run this doubly-nested suite!', function () {
- it('should run this test', function() {});
-
- it('should run this test', function() {});
-
- it('should run this test', function() {});
- });
- });
-});
-
-
-describe('should run this suite with an exclusive test', function() {
- it.only('should run this test', function () {});
-
- describe('should not run this nested suite', function () {
- describe.only('should not run this doubly-nested suite', function () {
- it('should not run this test', function() {});
-
- it('should not run this test', function() {});
-
- it('should not run this test', function() {});
- });
- });
-});
-
-describe('should run this suite with an exclusive test (reverse order)', function() {
- describe('should not run this nested suite', function () {
- describe.only('should not run this doubly-nested suite', function () {
- it('should not run this test', function() {});
-
- it('should not run this test', function() {});
-
- it('should not run this test', function() {});
- });
- });
- it.only('should run this test', function () {});
-});