Skip to content

Commit

Permalink
Remove flags
Browse files Browse the repository at this point in the history
 that is only used in certain scenarios
  • Loading branch information
yamachu committed Jun 28, 2022
1 parent 71c1ff7 commit d54b143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mono/wasm/test-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ function initRunArgs() {
runArgs.enableGC = runArgs.enableGC === undefined ? true : runArgs.enableGC;
runArgs.diagnosticTracing = runArgs.diagnosticTracing === undefined ? false : runArgs.diagnosticTracing;
runArgs.debugging = runArgs.debugging === undefined ? false : runArgs.debugging;
runArgs.deepWorkDir = runArgs.deepWorkDir === undefined ? false : runArgs.deepWorkDir;
// default'ing to true for tests, unless debugging
runArgs.forwardConsole = runArgs.forwardConsole === undefined ? !runArgs.debugging : runArgs.forwardConsole;
}
Expand Down Expand Up @@ -212,7 +211,8 @@ function processQueryArguments(incomingArguments) {
console.warn("--fetch-random-delay only works on browser")
}
} else if (currentArg == ("--deep-work-dir")) {
runArgs.deepWorkDir = true;
// PR: https://github.com/dotnet/runtime/pull/69441
// NOP
} else {
break;
}
Expand Down

0 comments on commit d54b143

Please sign in to comment.