fix(test): isolate flaky extension lanes

This commit is contained in:
Peter Steinberger
2026-03-23 05:01:21 +00:00
parent dc6c22b812
commit 827c441902
6 changed files with 73 additions and 35 deletions

View File

@@ -15,6 +15,22 @@
}
]
},
"extensions": {
"isolated": [
{
"file": "extensions/matrix/src/matrix/sdk.test.ts",
"reason": "This suite hoists a matrix-js-sdk module mock that can leak into later Matrix extension files when they share a non-isolated worker."
},
{
"file": "extensions/matrix/src/matrix/client/file-sync-store.test.ts",
"reason": "Matrix sdk.test.ts hoists a matrix-js-sdk module mock; keep the sync-store persistence regression in its own forked lane so non-isolated extension workers stay deterministic."
},
{
"file": "extensions/nextcloud-talk/src/monitor.replay.test.ts",
"reason": "The replay-handling regression is green alone but can inherit disturbed global stream/Response state from the shared extensions lane, so keep it in its own forked lane for deterministic CI."
}
]
},
"unit": {
"isolated": [],
"threadPinned": []