Browse Source

fix(test): drop view restricting column edit for sqlite

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/3668/head
mertmit 2 years ago
parent
commit
b3cd12482e
  1. 4
      tests/playwright/tests/viewKanban.spec.ts

4
tests/playwright/tests/viewKanban.spec.ts

@ -20,6 +20,10 @@ test.describe('View', () => {
await dashboard.closeTab({ title: 'Team & Auth' }); await dashboard.closeTab({ title: 'Team & Auth' });
await dashboard.treeView.openTable({ title: 'Film' }); await dashboard.treeView.openTable({ title: 'Film' });
if (isSqlite(context)) {
await dashboard.treeView.deleteTable({ title: 'FilmList' });
}
if (isPg(context)) { if (isPg(context)) {
// Since these view depend on the Ratings column of the Film table // Since these view depend on the Ratings column of the Film table
await dashboard.treeView.deleteTable({ title: 'NicerButSlowerFilmList' }); await dashboard.treeView.deleteTable({ title: 'NicerButSlowerFilmList' });

Loading…
Cancel
Save