Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporary: Skip more CI-only deployment test failures #2071

Merged
merged 1 commit into from
Dec 11, 2024
Merged
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
10 changes: 9 additions & 1 deletion packages/playground/website/playwright/e2e/deployment.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ test.afterEach(async () => {
});

for (const cachingEnabled of [true, false]) {
test(`When a new website version is deployed, it should be loaded upon a regular page refresh (with HTTP caching ${
/**
* These tests are failing in CI but not locally, so they are skipped for
* now. We are working on fixing this, but in the meantime, let's avoid
* living with failures on trunk.
*
* The PR for fixing this issue is here:
* https://github.com/WordPress/wordpress-playground/pull/2065
*/
test.skip(`When a new website version is deployed, it should be loaded upon a regular page refresh (with HTTP caching ${
cachingEnabled ? 'enabled' : 'disabled'
})`, async ({ website, page, wordpress }) => {
server!.setHttpCacheEnabled(cachingEnabled);
Expand Down
Loading