2
0

🐛 (limits) Fix storage limit trigger and e2e tests

This commit is contained in:
Baptiste Arnaud
2022-09-24 08:58:23 +02:00
committed by Baptiste Arnaud
parent 1e26703ad4
commit 30dff2d5d7
52 changed files with 1024 additions and 2205 deletions

View File

@ -135,9 +135,13 @@ test.describe.parallel('Settings page', () => {
typebotViewer(page).locator('text="What\'s your name?"')
).toBeVisible()
await page.click('button:has-text("General")')
await expect(page.locator('text=Pro')).toBeVisible()
await expect(page.locator('text=Starter')).toBeVisible()
await page.click('text=Typebot.io branding')
await expect(page.locator('text=For solo creator')).toBeVisible()
await expect(
page.locator(
'text="You need to upgrade your plan in order to remove branding"'
)
).toBeVisible()
})
})
})