Skip to content

Commit d15b098

Browse files
authored
Increase rwc js verification timeout (#22191)
* Increase js verification timeout * Add seperator
1 parent 0dc5f18 commit d15b098

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/harness/rwcRunner.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace RWC {
5555
});
5656

5757
it("can compile", function(this: Mocha.ITestCallbackContext) {
58-
this.timeout(800000); // Allow long timeouts for RWC compilations
58+
this.timeout(800_000); // Allow long timeouts for RWC compilations
5959
let opts: ts.ParsedCommandLine;
6060

6161
const ioLog: IoLog = Playback.newStyleLogIntoOldStyleLog(JSON.parse(Harness.IO.readFile(`internal/cases/rwc/${jsonPath}/test.json`)), Harness.IO, `internal/cases/rwc/${baseName}`);
@@ -171,7 +171,7 @@ namespace RWC {
171171

172172

173173
it("has the expected emitted code", function(this: Mocha.ITestCallbackContext) {
174-
this.timeout(10000); // Allow long timeouts for RWC js verification
174+
this.timeout(100_000); // Allow longer timeouts for RWC js verification
175175
Harness.Baseline.runMultifileBaseline(baseName, "", () => {
176176
return Harness.Compiler.iterateOutputs(compilerResult.files);
177177
}, baselineOpts, [".js", ".jsx"]);

0 commit comments

Comments
 (0)