From b3cd12482eda01324871b1137833e5c115266f63 Mon Sep 17 00:00:00 2001 From: mertmit Date: Thu, 1 Dec 2022 02:58:11 +0300 Subject: [PATCH] fix(test): drop view restricting column edit for sqlite Signed-off-by: mertmit --- tests/playwright/tests/viewKanban.spec.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/playwright/tests/viewKanban.spec.ts b/tests/playwright/tests/viewKanban.spec.ts index b220e1e2d9..1bbb31e7e8 100644 --- a/tests/playwright/tests/viewKanban.spec.ts +++ b/tests/playwright/tests/viewKanban.spec.ts @@ -19,6 +19,10 @@ test.describe('View', () => { // close 'Team & Auth' tab await dashboard.closeTab({ title: 'Team & Auth' }); await dashboard.treeView.openTable({ title: 'Film' }); + + if (isSqlite(context)) { + await dashboard.treeView.deleteTable({ title: 'FilmList' }); + } if (isPg(context)) { // Since these view depend on the Ratings column of the Film table