We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6813124 commit 5644fe3Copy full SHA for 5644fe3
src/nw_base.cc
@@ -39,6 +39,9 @@ void SetExitCode(int code) {
39
}
40
41
int ExitCodeHook() {
42
+ const base::CommandLine* cmdline = base::CommandLine::ForCurrentProcess();
43
+ if (cmdline->HasSwitch("nwjs-test-mode"))
44
+ return 0;
45
return exit_code;
46
47
test/data/platform_apps/local_pdf/package.json
@@ -14,7 +14,6 @@
14
"webkit": {
15
"plugins": true
16
},
17
- "chromium-args": "--enable-logging --v=1",
18
"webview": {
19
"partitions": [
20
{
0 commit comments