Skip to content

Commit 0b86a4c

Browse files
Skip the wasm test for now, it doesn't even actually test wasm currently (#6044)
The semantics for the wasm stuff is changing, and this is blocking the roll. See flutter/flutter#142809 Also, this test wasn't actually testing the wasm build previously, since it is still serving the `build/web` directory even though `--wasm` used to actually output to `build/web_wasm`.
1 parent 19f88ae commit 0b86a4c

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

packages/web_benchmarks/testing/web_benchmarks_test.dart

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,18 @@ Future<void> main() async {
2626
);
2727
}, timeout: Timeout.none);
2828

29-
test('Can run a web benchmark with wasm', () async {
30-
await _runBenchmarks(
31-
benchmarkNames: <String>['simple'],
32-
entryPoint: 'lib/benchmarks/runner_simple.dart',
33-
compilationOptions: const CompilationOptions(useWasm: true),
34-
);
35-
}, timeout: Timeout.none);
29+
test(
30+
'Can run a web benchmark with wasm',
31+
() async {
32+
await _runBenchmarks(
33+
benchmarkNames: <String>['simple'],
34+
entryPoint: 'lib/benchmarks/runner_simple.dart',
35+
compilationOptions: const CompilationOptions(useWasm: true),
36+
);
37+
},
38+
skip: true, // https://github.com/flutter/flutter/issues/142809
39+
timeout: Timeout.none,
40+
);
3641
}
3742

3843
Future<void> _runBenchmarks({

0 commit comments

Comments
 (0)