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/suite.spec.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/integration/suite.spec.js42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/lib/mocha-3.1.0/test/integration/suite.spec.js b/tests/lib/mocha-3.1.0/test/integration/suite.spec.js
deleted file mode 100644
index 00066a34f4..0000000000
--- a/tests/lib/mocha-3.1.0/test/integration/suite.spec.js
+++ /dev/null
@@ -1,42 +0,0 @@
-var assert = require('assert');
-var run = require('./helpers').runMocha;
-var args = [];
-
-describe('suite w/no callback', function() {
- this.timeout(1000);
- it('should throw a helpful error message when a callback for suite is not supplied', function(done) {
- run('suite/suite-no-callback.fixture.js', args, function(err, res) {
- assert(!err);
- var result = res.output.match(/no callback was supplied/) || [];
- assert.equal(result.length, 1);
- done();
- });
- });
-});
-
-describe('skipped suite w/no callback', function() {
- this.timeout(1000);
- it('should not throw an error when a callback for skipped suite is not supplied', function(done) {
- run('suite/suite-skipped-no-callback.fixture.js', args, function(err, res) {
- assert(!err);
- pattern = new RegExp("Error", 'g');
- var result = res.output.match(pattern) || [];
- assert.equal(result.length, 0);
- done();
- });
- });
-});
-
-
-describe('skipped suite w/ callback', function() {
- this.timeout(1000);
- it('should not throw an error when a callback for skipped suite is supplied', function(done) {
- run('suite/suite-skipped-callback.fixture.js', args, function(err, res) {
- assert(!err);
- pattern = new RegExp("Error", 'g');
- var result = res.output.match(pattern) || [];
- assert.equal(result.length, 0);
- done();
- });
- });
-});