Skip to content

Commit

Permalink
test: only enlarge the timeout for pipe test
Browse files Browse the repository at this point in the history
  • Loading branch information
yunnysunny committed Apr 6, 2022
1 parent ba56f87 commit 16c88c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -13,7 +13,7 @@ test-node:
--throw-deprecation \
--reporter $(REPORTER) \
--slow 2000 \
--timeout 15000 \
--timeout 5000 \
--exit \
$(NODETESTS)

Expand Down
3 changes: 2 additions & 1 deletion test/node/query.js
Expand Up @@ -200,7 +200,8 @@ describe('req.query(Object)', () => {
});
});

it('query-string should be sent on pipe', (done) => {
it('query-string should be sent on pipe', function(done) {
this.timeout(15_000);
const request_ = request.put(`${base}/?name=tobi`);
const stream = fs.createReadStream('test/node/fixtures/user.json');

Expand Down

0 comments on commit 16c88c5

Please sign in to comment.