File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
tests/BenchmarkDotNet.IntegrationTests Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 13
13
14
14
namespace BenchmarkDotNet . IntegrationTests
15
15
{
16
- public class WasmTests : BenchmarkTestExecutor
16
+ /// <summary>
17
+ /// In order to run WasmTests locally, the following prerequisites are required:
18
+ /// * Install wasm-tools workload: `BenchmarkDotNet/build.cmd install-wasm-tools`
19
+ /// * Install npm
20
+ /// * Install v8: `npm install jsvu -g && jsvu --os=default --engines=v8`
21
+ /// * Add `$HOME/.jsvu/bin` to PATH
22
+ /// * Run tests using .NET SDK from `BenchmarkDotNet/.dotnet/`
23
+ /// </summary>
24
+ public class WasmTests ( ITestOutputHelper output ) : BenchmarkTestExecutor ( output )
17
25
{
18
- public WasmTests ( ITestOutputHelper output ) : base ( output ) { }
19
-
20
26
[ FactEnvSpecific ( "WASM is only supported on Unix" , EnvRequirement . NonWindows ) ]
21
27
public void WasmIsSupported ( )
22
28
{
You can’t perform that action at this time.
0 commit comments