feat(nc-gui): Added cypress test for ERD

This commit is contained in:
Muhammed Mustafa
2022-09-17 21:02:16 +05:30
parent 53e54d0018
commit 7e6252ee72
9 changed files with 412 additions and 38 deletions

View File

@@ -156,3 +156,13 @@ export function setProjectString(projStr) {
export function getProjectString() {
return xcdbProjectString;
}
const sakilaTables = [
'actor', 'address', 'category', 'city', 'country', 'customer', 'film', 'film_text', 'language', 'payment', 'rental', 'staff'
]
const sakilaSqlViews = [
'actor_info', 'customer_list', 'film_list', 'nicer_but_slower_film_list', 'sales_by_film_category', 'sales_by_store', 'staff_list'
]
export { sakilaTables, sakilaSqlViews }