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/http.spec.js')
-rw-r--r--tests/lib/mocha-3.1.0/test/acceptance/http.spec.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/lib/mocha-3.1.0/test/acceptance/http.spec.js b/tests/lib/mocha-3.1.0/test/acceptance/http.spec.js
deleted file mode 100644
index 43b8588508..0000000000
--- a/tests/lib/mocha-3.1.0/test/acceptance/http.spec.js
+++ /dev/null
@@ -1,16 +0,0 @@
-var http = require('http');
-
-var server = http.createServer(function(req, res){
- res.end('Hello World\n');
-})
-
-server.listen(8888);
-
-describe('http', function(){
- it('should provide an example', function(done){
- http.get({ path: '/', port: 8888 }, function(res){
- expect(res).to.have.property('statusCode', 200);
- done();
- })
- })
-})