Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 3a622e1

Browse files
Skip the skwasm unit test suite on Safari since it is flaky. (#37602)
* Skip the skwasm unit test suite on Safari since it is flaky. * Add TODO.
1 parent 84cb1f8 commit 3a622e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/web_ui/dev/steps/run_tests_step.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ class RunTestsStep implements PipelineStep {
104104
testsPassed &= io.exitCode == 0;
105105
}
106106

107-
if (sortedTests.skwasmTests.isNotEmpty) {
107+
// TODO(jacksongardner): enable this test suite on safari
108+
// For some reason, Safari is flaky when running the Skwasm test suite
109+
// See https://github.com/flutter/flutter/issues/115312
110+
if (browserName != kSafari && sortedTests.skwasmTests.isNotEmpty) {
108111
await _runTestBatch(
109112
testFiles: sortedTests.skwasmTests,
110113
renderer: Renderer.skwasm,

0 commit comments

Comments
 (0)