File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
e2e/playwright/tests/smoke-test Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -39,12 +39,11 @@ test('smoke test', async ({ page }) => {
39
39
await page . locator ( '.replicated-select__option' ) . getByText ( 'Weekly' , { exact : true } ) . click ( ) ;
40
40
await expect ( page . locator ( '.ConfigureUpdatesModal' ) ) . toContainText ( 'Weekly' ) ;
41
41
await expect ( page . locator ( '.ConfigureUpdatesModal' ) ) . toContainText ( 'At 12:00 AM, only on Sunday' ) ;
42
- await page . getByLabel ( 'Enable automatic deployment' ) . check ( ) ;
43
42
await page . getByRole ( 'button' , { name : 'Update' , exact : true } ) . click ( ) ;
44
43
await expect ( page . getByText ( 'Automatically check for updates' , { exact : true } ) ) . not . toBeVisible ( ) ;
45
- await page . waitForTimeout ( 2000 ) ;
46
44
await page . locator ( 'span[data-tip="View deploy logs"]' ) . first ( ) . click ( ) ;
47
45
await validateDeployLogs ( page , expect ) ;
46
+ await page . reload ( ) ;
48
47
await page . getByRole ( 'link' , { name : 'Dashboard' } ) . click ( ) ;
49
48
await expect ( page . getByText ( 'App Name' ) ) . toBeVisible ( ) ;
50
49
await expect ( page . locator ( '.Dashboard--appIcon' ) ) . toBeVisible ( ) ;
You can’t perform that action at this time.
0 commit comments