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/hooks.fixture.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/integration/fixtures/retries/hooks.fixture.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/hooks.fixture.js b/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/hooks.fixture.js
deleted file mode 100644
index 47f6c6a1b7..0000000000
--- a/tests/lib/mocha-3.1.0/test/integration/fixtures/retries/hooks.fixture.js
+++ /dev/null
@@ -1,25 +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(){
- this.retries(4);
- console.log('TEST', times);
- times++;
- throw new Error('retry error');
- });
-});