mirror of
https://github.com/CJackHwang/ds2api.git
synced 2026-05-14 21:25:09 +08:00
disable token-mismatch gate by default in raw stream simulator
This commit is contained in:
@@ -20,7 +20,7 @@ function parseArgs(argv) {
|
||||
failOnReferenceLeak: true,
|
||||
failOnMissingFinish: true,
|
||||
failOnBaselineMismatch: true,
|
||||
failOnTokenMismatch: true,
|
||||
failOnTokenMismatch: false,
|
||||
showOutput: false,
|
||||
writeReplayText: false,
|
||||
};
|
||||
@@ -44,6 +44,8 @@ function parseArgs(argv) {
|
||||
out.failOnMissingFinish = false;
|
||||
} else if (a === '--no-fail-on-baseline-mismatch' || a === '--no-fail-on-processed-mismatch') {
|
||||
out.failOnBaselineMismatch = false;
|
||||
} else if (a === '--fail-on-token-mismatch') {
|
||||
out.failOnTokenMismatch = true;
|
||||
} else if (a === '--no-fail-on-token-mismatch') {
|
||||
out.failOnTokenMismatch = false;
|
||||
} else if (a === '--show-output') {
|
||||
|
||||
Reference in New Issue
Block a user