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.
This commit is contained in:
parent
4c323c3bc4
commit
e3ba8d93f2
2 changed files with 3 additions and 3 deletions
|
|
@ -64,7 +64,7 @@ export default defineConfig({
|
||||||
['junit'],
|
['junit'],
|
||||||
['list']
|
['list']
|
||||||
],
|
],
|
||||||
timeout: 180_000,
|
timeout: 300_000,
|
||||||
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
||||||
use: {
|
use: {
|
||||||
/* Base URL to use in actions like `await page.goto('/')`. */
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
||||||
|
|
|
||||||
|
|
@ -75,9 +75,9 @@ const lookupTypesToTest: LookupTestCase[] = [
|
||||||
},
|
},
|
||||||
customerDetails: {
|
customerDetails: {
|
||||||
address: {
|
address: {
|
||||||
street: '4076 Spectacle Dr',
|
street: '4076 Spectacle Drive',
|
||||||
city: 'Columbus',
|
city: 'Columbus',
|
||||||
state: 'Ohio',
|
state: 'OH',
|
||||||
postalCode: '59261',
|
postalCode: '59261',
|
||||||
country: 'United States'
|
country: 'United States'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue