From 7822fe3d2a0cbfc5d805542a3b374e3baf6dc374 Mon Sep 17 00:00:00 2001 From: Andrew Jakubowicz Date: Tue, 26 Sep 2023 15:41:04 -0700 Subject: [PATCH] fix integration test --- .../lit-dev-tests/src/playwright/components-styles.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/lit-dev-tests/src/playwright/components-styles.spec.ts b/packages/lit-dev-tests/src/playwright/components-styles.spec.ts index dc2c91289..050f5eb5e 100644 --- a/packages/lit-dev-tests/src/playwright/components-styles.spec.ts +++ b/packages/lit-dev-tests/src/playwright/components-styles.spec.ts @@ -19,7 +19,7 @@ test.describe('docs/components/styles', () => { // Wait for the exact playground preview we want to load. await page.waitForSelector( - 'litdev-example[project="v2-docs/components/style/superstyles"] playground-preview [part="preview-loading-indicator"][aria-hidden="true"]' + 'litdev-example[project="v3-docs/components/style/superstyles"] playground-preview [part="preview-loading-indicator"][aria-hidden="true"]' ); // Wait for the loading bar to fade out. await page.waitForTimeout(250); @@ -27,7 +27,7 @@ test.describe('docs/components/styles', () => { await expect( await page .locator( - 'litdev-example[project="v2-docs/components/style/superstyles"] playground-preview' + 'litdev-example[project="v3-docs/components/style/superstyles"] playground-preview' ) .screenshot() ).toMatchSnapshot('inheritingStylesPlaygroundPreview.png');