fix(ci): stabilize merged coverage gates

This commit is contained in:
ZiyaZhang
2026-07-30 20:52:35 -07:00
parent ade8358e67
commit 45e5317ecd
4 changed files with 6 additions and 16 deletions

View File

@@ -847,18 +847,7 @@ describe('workspace context request injection', () => {
it('mounts without requiring a filesystem provider', async () => {
const ctx = new Context()
try {
const outcome = await Promise.race([
ctx.plugin(workspaceContext, { maxBytes: 65536 }).then(() => {
return 'settled' as const
}),
new Promise<'pending'>((resolve) => {
setTimeout(() => {
resolve('pending')
}, 50)
}),
])
expect(outcome).toBe('settled')
await ctx.plugin(workspaceContext, { maxBytes: 65536 })
} finally {
await ctx.fiber.dispose()
}