Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ test(
"flow state should be properly cleaned up between user sessions",
{ tag: ["@release", "@api", "@database"] },
async ({ page }) => {
test.skip(
process.platform === "win32",
"Flaky on Windows CI runners due to multi-session workload; covered by Linux/macOS runs",
);

// Disable auto login
await page.route("**/api/v1/auto_login", (route) => {
route.fulfill({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ test(
"user should be able to use third quarter of starter projects without any outdated components on the flow",
{ tag: ["@release", "@components"] },
async ({ page }) => {
test.skip(
process.platform === "win32",
"Flaky on Windows CI runners due to template-load workload; outdated-component check is OS-agnostic and covered by Linux/macOS runs",
);

await awaitBootstrapTest(page);

const templatesData = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ test(
"user should be able to use first quarter of starter projects without any outdated components on the flow",
{ tag: ["@release", "@components"] },
async ({ page }) => {
test.skip(
process.platform === "win32",
"Flaky on Windows CI runners due to template-load workload; outdated-component check is OS-agnostic and covered by Linux/macOS runs",
);

await awaitBootstrapTest(page);

const templatesData = [];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ test(
"user should be able to use second quarter of starter projects without any outdated components on the flow",
{ tag: ["@release", "@components"] },
async ({ page }) => {
test.skip(
process.platform === "win32",
"Flaky on Windows CI runners due to template-load workload; outdated-component check is OS-agnostic and covered by Linux/macOS runs",
);

await awaitBootstrapTest(page);

const templatesData = [];
Expand Down
Loading