We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
common
1 parent 64beab0 commit fc66eedCopy full SHA for fc66eed
test/pummel/test-keep-alive.js
@@ -1,8 +1,4 @@
1
'use strict';
2
-if (common.isWindows) {
3
- console.log('1..0 # Skipped: no `wrk` on windows');
4
- return;
5
-}
6
7
// This test requires the program 'wrk'
8
var common = require('../common');
@@ -12,6 +8,11 @@ var http = require('http');
12
var path = require('path');
13
9
var url = require('url');
14
10
11
+if (common.isWindows) {
+ console.log('1..0 # Skipped: no `wrk` on windows');
+ return;
+}
15
+
16
var body = 'hello world\n';
17
var server = http.createServer(function(req, res) {
18
res.writeHead(200, {
0 commit comments