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/retries/async.fixture.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/integration/fixtures/retries/async.fixture.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/async.fixture.js b/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/async.fixture.js
deleted file mode 100644
index 0e917e52f3..0000000000
--- a/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/async.fixture.js
+++ /dev/null
@@ -1,28 +0,0 @@
-describe('retries', function() {
- var times = 0;
- before(function () {
- console.log('before');
- });
-
- after(function () {
- console.log('after');
- });
-
- beforeEach(function() {
- console.log('before each', times);
- });
-
- afterEach(function () {
- console.log('after each', times);
- });
-
- it('should allow override and run appropriate hooks', function (done) {
- this.timeout(200);
- this.retries(2);
- console.log('TEST', times);
- if (++times < 3) {
- return setTimeout(done, 300);
- }
- setTimeout(done, 50);
- });
-});