Skip to content

Commit

Permalink
fix wbt build
Browse files Browse the repository at this point in the history
  • Loading branch information
radical committed Feb 17, 2022
1 parent 7b90965 commit f7c77d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tests/BuildWasmApps/Wasm.Build.Tests/BuildTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ protected string RunAndTestWasmApp(BuildArgs buildArgs,
(string testCommand, string extraXHarnessArgs) = host switch
{
RunHost.V8 => ("wasm test", "--js-file=test-main.js --engine=V8 -v trace"),
RunHost.NodeJS => ("wasm test", "--js-file=test-main.js --engine=NodeJS -v trace"),
//RunHost.NodeJS => ("wasm test", "--js-file=test-main.js --engine=NodeJS -v trace"),
_ => ("wasm test-browser", $"-v trace -b {host}")
};

Expand Down
2 changes: 1 addition & 1 deletion src/tests/BuildWasmApps/Wasm.Build.Tests/RunHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public enum RunHost
Firefox = 8,
// NodeJS = 16,

All = V8 | NodeJS | Chrome//| Firefox//Safari
All = V8 | /*NodeJS | */ Chrome//| Firefox//Safari
}
}

0 comments on commit f7c77d9

Please sign in to comment.