mirror of
https://github.com/stablyai/orca.git
synced 2026-09-25 08:02:31 +00:00
Windows terminal rendering golden is flaky on CI runners. Re-enable Windows in the golden E2E gate with a scoped test for the fresh-profile startup regression from #14130. Terminal rendering continues on Linux and macOS; Windows runs fresh-startup only.
13 lines
435 B
TypeScript
13 lines
435 B
TypeScript
import { expect, test } from './helpers/orca-app'
|
|
|
|
test.use({ dismissOnboarding: false, seedTestRepo: false })
|
|
test.skip(process.platform !== 'win32', 'Fresh-profile fsync regression is Windows-only')
|
|
|
|
test('fresh Windows profile reaches onboarding @windows-fresh-startup-golden', async ({
|
|
orcaPage
|
|
}) => {
|
|
await expect(orcaPage.getByRole('heading', { name: /Pick your default agent/i })).toBeVisible({
|
|
timeout: 30_000
|
|
})
|
|
})
|