.agent/workflows/fix-flaky-tests.md
Investigate flaky tests in the repo and propose fixes to improve stability. High-level process:
--runs_per_test flag to easily find
flakes.bazel test //packages/core/....flakes/${relevantNameFromTest}.--test_env JASMINE_RANDOM_SEED=1234 to
replicate the broken test ordering.xit
and fit to narrow down where the flake might be coming from if
multiple tests are influencing each other.--test_tag_filters -firefox if the flake does not appear to be
browser specific.--test_sharding_strategy disabled to run the
test in a single shard.--runs_per_test.
Additional notes:
origin, but do not create PRs for
them.