Skip to content

Commit

Permalink
Increase timeout on RASP integration test for windows (#4907)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlesDD authored Nov 19, 2024
1 parent 920d2a2 commit add2338
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('RASP - command_injection - integration', () => {
let axios, sandbox, cwd, appPort, appFile, agent, proc

before(async function () {
this.timeout(60000)
this.timeout(process.platform === 'win32' ? 90000 : 30000)

sandbox = await createSandbox(
['express'],
Expand Down

0 comments on commit add2338

Please sign in to comment.