From e3ba8d93f2990840e86c7e7a74791a51880cd06d Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Wed, 28 May 2025 14:33:19 -0400 Subject: [PATCH] Increases timeout and corrects address Increases the global test timeout to prevent failures on slower environments. Updates the address in a test case to use correct formatting and abbreviation to ensure the test passes consistently. --- playwright-tests/playwright.config.ts | 2 +- .../tests/alert-validation/alert0007_VinNotFound.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 7d2133cc4..230ad948d 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -64,7 +64,7 @@ export default defineConfig({ ['junit'], ['list'] ], - timeout: 180_000, + timeout: 300_000, /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ diff --git a/playwright-tests/tests/alert-validation/alert0007_VinNotFound.ts b/playwright-tests/tests/alert-validation/alert0007_VinNotFound.ts index 0ee058903..fccf12662 100644 --- a/playwright-tests/tests/alert-validation/alert0007_VinNotFound.ts +++ b/playwright-tests/tests/alert-validation/alert0007_VinNotFound.ts @@ -75,9 +75,9 @@ const lookupTypesToTest: LookupTestCase[] = [ }, customerDetails: { address: { - street: '4076 Spectacle Dr', + street: '4076 Spectacle Drive', city: 'Columbus', - state: 'Ohio', + state: 'OH', postalCode: '59261', country: 'United States' }