Skip to content

Commit 75b27ab

Browse files
committed
Remove useless test folders
1 parent cd5290a commit 75b27ab

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"nyc": "15.x"
3434
},
3535
"scripts": {
36-
"test": "mocha --exit ./test/mocha/integration",
36+
"test": "mocha --exit",
3737
"coverage": "nyc --reporter=lcov npm run test"
3838
}
3939
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fetch = async (...args) => {
3434
return fetch(...args);
3535
};
3636

37-
const fcgi = require('../../../index.js');
37+
const fcgi = require('../index.js');
3838

3939
function timeoutSignal(ms) {
4040
const ctrl = new AbortController();
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fetch = async (...args) => {
3434
return fetch(...args);
3535
};
3636

37-
const fcgi = require('../../../index.js');
37+
const fcgi = require('../index.js');
3838

3939
function timeoutSignal(ms) {
4040
const ctrl = new AbortController();

test/mocha/integration/multiwrite_no_content_length.js renamed to test/multiwrite_no_content_length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fetch = async (...args) => {
3434
return fetch(...args);
3535
};
3636

37-
const fcgi = require('../../../index.js');
37+
const fcgi = require('../index.js');
3838

3939
function timeoutSignal(ms) {
4040
const ctrl = new AbortController();

test/mocha/integration/stdin_backpressure.js renamed to test/stdin_backpressure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const fcgiHandler = require('fcgi-handler'),
2929
stream = require('stream'),
3030
expect = require('chai').expect;
3131

32-
const fcgi = require('../../../index.js');
32+
const fcgi = require('../index.js');
3333

3434
function timeoutSignal(ms) {
3535
const ctrl = new AbortController();

0 commit comments

Comments
 (0)