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/acceptance/misc/exit.spec.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/misc/exit.spec.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/misc/exit.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/misc/exit.spec.js
deleted file mode 100644
index 113e392300..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/misc/exit.spec.js
+++ /dev/null
@@ -1,18 +0,0 @@
-describe('exit', function(){
- //note --bail works nicely in that it still allows an 'early exit' in an error scenario
- it('should not exit even in error scenario if called with --no-exit', function(done){
- done(new Error('failure'));
- })
-
- it('should take a long time to exit if called with --no-exit', function(done){
- done();
- setTimeout(function() {
- console.log('all done');
- }, 2500)
- })
-
- it('should kill all processes when SIGINT received', function () {
- // uncomment to test
- //while (true) {}
- });
-})