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

Commit ad6b2d6

Browse files
Skip the skwasm unit test suite on Safari since it is flaky.
1 parent 42bc762 commit ad6b2d6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/web_ui/dev/steps/run_tests_step.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ class RunTestsStep implements PipelineStep {
100100
);
101101
}
102102

103-
if (sortedTests.skwasmTests.isNotEmpty) {
103+
// For some reason, Safari is flaky when running the Skwasm test suite
104+
// See https://github.com/flutter/flutter/issues/115312
105+
if (browserName != kSafari && sortedTests.skwasmTests.isNotEmpty) {
104106
await _runTestBatch(
105107
testFiles: sortedTests.skwasmTests,
106108
renderer: Renderer.skwasm,

0 commit comments

Comments
 (0)