Skip to content

Commit e0bc5db

Browse files
committed
Increase timeout for file-patch tests
"Parameterizes" the timeout here, just as it was done for most tests in this earlier commit: 5bd26b6
1 parent 8e10ef6 commit e0bc5db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/file-patch.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe('integration: file patches', function() {
1919

2020
beforeEach(function() {
2121
// These tests take a little longer because they rely on real filesystem events and git operations.
22-
until.setDefaultTimeout(9000);
22+
until.setDefaultTimeout(parseInt(process.env.UNTIL_TIMEOUT || '9000', 10));
2323
});
2424

2525
afterEach(async function() {

0 commit comments

Comments
 (0)