diff --git a/package.json b/package.json index cdbfcf03c0..b2ffc567ca 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ ] }, "scripts": { - "lint:staged:playwright": "cd scripts/playwright; npx lint-staged; cd ..", + "lint:staged:playwright": "cd packages/nc-gui/tests/playwright; npx lint-staged; cd -", "build:common": "cd ./packages/nocodb-sdk; npm install; npm run build", "install:common": "cd ./packages/nocodb; npm install ../nocodb-sdk; cd ../nc-gui; npm install ../nocodb-sdk", "start:api": "npm run build:common ; cd ./packages/nocodb; npm install ../nocodb-sdk; npm install; NC_DISABLE_CACHE=true NC_DISABLE_TELE=true npm run watch:run:cypress", diff --git a/scripts/playwright/.env.example b/packages/nc-gui/tests/playwright/.env.example similarity index 100% rename from scripts/playwright/.env.example rename to packages/nc-gui/tests/playwright/.env.example diff --git a/scripts/playwright/.eslintrc.json b/packages/nc-gui/tests/playwright/.eslintrc.json similarity index 100% rename from scripts/playwright/.eslintrc.json rename to packages/nc-gui/tests/playwright/.eslintrc.json diff --git a/scripts/playwright/.gitignore b/packages/nc-gui/tests/playwright/.gitignore similarity index 100% rename from scripts/playwright/.gitignore rename to packages/nc-gui/tests/playwright/.gitignore diff --git a/scripts/playwright/.lintstagedrc.json b/packages/nc-gui/tests/playwright/.lintstagedrc.json similarity index 100% rename from scripts/playwright/.lintstagedrc.json rename to packages/nc-gui/tests/playwright/.lintstagedrc.json diff --git a/scripts/playwright/.prettierignore b/packages/nc-gui/tests/playwright/.prettierignore similarity index 100% rename from scripts/playwright/.prettierignore rename to packages/nc-gui/tests/playwright/.prettierignore diff --git a/scripts/playwright/.prettierrc.js b/packages/nc-gui/tests/playwright/.prettierrc.js similarity index 100% rename from scripts/playwright/.prettierrc.js rename to packages/nc-gui/tests/playwright/.prettierrc.js diff --git a/scripts/playwright/constants/index.ts b/packages/nc-gui/tests/playwright/constants/index.ts similarity index 100% rename from scripts/playwright/constants/index.ts rename to packages/nc-gui/tests/playwright/constants/index.ts diff --git a/scripts/playwright/fixtures/expectedBaseDownloadData.txt b/packages/nc-gui/tests/playwright/fixtures/expectedBaseDownloadData.txt similarity index 100% rename from scripts/playwright/fixtures/expectedBaseDownloadData.txt rename to packages/nc-gui/tests/playwright/fixtures/expectedBaseDownloadData.txt diff --git a/scripts/playwright/fixtures/expectedBaseDownloadDataPg.txt b/packages/nc-gui/tests/playwright/fixtures/expectedBaseDownloadDataPg.txt similarity index 100% rename from scripts/playwright/fixtures/expectedBaseDownloadDataPg.txt rename to packages/nc-gui/tests/playwright/fixtures/expectedBaseDownloadDataPg.txt diff --git a/scripts/playwright/fixtures/expectedData.txt b/packages/nc-gui/tests/playwright/fixtures/expectedData.txt similarity index 100% rename from scripts/playwright/fixtures/expectedData.txt rename to packages/nc-gui/tests/playwright/fixtures/expectedData.txt diff --git a/scripts/playwright/fixtures/expectedDataSqlite.txt b/packages/nc-gui/tests/playwright/fixtures/expectedDataSqlite.txt similarity index 100% rename from scripts/playwright/fixtures/expectedDataSqlite.txt rename to packages/nc-gui/tests/playwright/fixtures/expectedDataSqlite.txt diff --git a/scripts/playwright/fixtures/sampleFiles/1.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/1.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/1.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/1.json diff --git a/scripts/playwright/fixtures/sampleFiles/2.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/2.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/2.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/2.json diff --git a/scripts/playwright/fixtures/sampleFiles/3.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/3.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/3.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/3.json diff --git a/scripts/playwright/fixtures/sampleFiles/4.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/4.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/4.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/4.json diff --git a/scripts/playwright/fixtures/sampleFiles/5.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/5.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/5.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/5.json diff --git a/scripts/playwright/fixtures/sampleFiles/6.json b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/6.json similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/6.json rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/6.json diff --git a/scripts/playwright/fixtures/sampleFiles/simple.xlsx b/packages/nc-gui/tests/playwright/fixtures/sampleFiles/simple.xlsx similarity index 100% rename from scripts/playwright/fixtures/sampleFiles/simple.xlsx rename to packages/nc-gui/tests/playwright/fixtures/sampleFiles/simple.xlsx diff --git a/scripts/playwright/fixtures/template.spec.ts b/packages/nc-gui/tests/playwright/fixtures/template.spec.ts similarity index 100% rename from scripts/playwright/fixtures/template.spec.ts rename to packages/nc-gui/tests/playwright/fixtures/template.spec.ts diff --git a/scripts/playwright/package-lock.json b/packages/nc-gui/tests/playwright/package-lock.json similarity index 100% rename from scripts/playwright/package-lock.json rename to packages/nc-gui/tests/playwright/package-lock.json diff --git a/scripts/playwright/package.json b/packages/nc-gui/tests/playwright/package.json similarity index 100% rename from scripts/playwright/package.json rename to packages/nc-gui/tests/playwright/package.json diff --git a/scripts/playwright/pages/Base.ts b/packages/nc-gui/tests/playwright/pages/Base.ts similarity index 100% rename from scripts/playwright/pages/Base.ts rename to packages/nc-gui/tests/playwright/pages/Base.ts diff --git a/scripts/playwright/pages/Dashboard/ExpandedForm/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/ExpandedForm/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/ExpandedForm/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/ExpandedForm/index.ts diff --git a/scripts/playwright/pages/Dashboard/Form/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Form/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Form/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Form/index.ts diff --git a/scripts/playwright/pages/Dashboard/Gallery/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Gallery/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Gallery/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Gallery/index.ts diff --git a/scripts/playwright/pages/Dashboard/Grid/Column/LTAR/ChildList.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/LTAR/ChildList.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Grid/Column/LTAR/ChildList.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/LTAR/ChildList.ts diff --git a/scripts/playwright/pages/Dashboard/Grid/Column/LTAR/LinkRecord.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/LTAR/LinkRecord.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Grid/Column/LTAR/LinkRecord.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/LTAR/LinkRecord.ts diff --git a/scripts/playwright/pages/Dashboard/Grid/Column/SelectOptionColumn.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/SelectOptionColumn.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Grid/Column/SelectOptionColumn.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/SelectOptionColumn.ts diff --git a/scripts/playwright/pages/Dashboard/Grid/Column/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Grid/Column/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Grid/Column/index.ts diff --git a/scripts/playwright/pages/Dashboard/Grid/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Grid/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Grid/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Grid/index.ts diff --git a/scripts/playwright/pages/Dashboard/Import/Airtable.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Import/Airtable.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Import/Airtable.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Import/Airtable.ts diff --git a/scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Import/ImportTemplate.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Import/ImportTemplate.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Import/ImportTemplate.ts diff --git a/scripts/playwright/pages/Dashboard/Kanban/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Kanban/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Kanban/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Kanban/index.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Acl.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Acl.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Acl.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Acl.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/AppStore.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/AppStore.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/AppStore.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/AppStore.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Audit.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Audit.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Audit.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Audit.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Erd.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Erd.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Erd.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Erd.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Metadata.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Metadata.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Metadata.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Metadata.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Miscellaneous.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Miscellaneous.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Miscellaneous.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Miscellaneous.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/Teams.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Teams.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/Teams.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/Teams.ts diff --git a/scripts/playwright/pages/Dashboard/Settings/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/Settings/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/Settings/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/Settings/index.ts diff --git a/scripts/playwright/pages/Dashboard/SurveyForm/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/SurveyForm/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/SurveyForm/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/SurveyForm/index.ts diff --git a/scripts/playwright/pages/Dashboard/TreeView.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/TreeView.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/TreeView.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/TreeView.ts diff --git a/scripts/playwright/pages/Dashboard/ViewSidebar/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/ViewSidebar/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/ViewSidebar/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/ViewSidebar/index.ts diff --git a/scripts/playwright/pages/Dashboard/WebhookForm/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/WebhookForm/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/WebhookForm/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/WebhookForm/index.ts diff --git a/scripts/playwright/pages/Dashboard/common/Cell/AttachmentCell.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/AttachmentCell.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Cell/AttachmentCell.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/AttachmentCell.ts diff --git a/scripts/playwright/pages/Dashboard/common/Cell/CheckboxCell.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/CheckboxCell.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Cell/CheckboxCell.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/CheckboxCell.ts diff --git a/scripts/playwright/pages/Dashboard/common/Cell/RatingCell.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/RatingCell.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Cell/RatingCell.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/RatingCell.ts diff --git a/scripts/playwright/pages/Dashboard/common/Cell/SelectOptionCell.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/SelectOptionCell.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Cell/SelectOptionCell.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/SelectOptionCell.ts diff --git a/scripts/playwright/pages/Dashboard/common/Cell/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Cell/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Cell/index.ts diff --git a/scripts/playwright/pages/Dashboard/common/ProjectMenu/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/ProjectMenu/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/ProjectMenu/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/ProjectMenu/index.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/Actions/Erd.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Actions/Erd.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/Actions/Erd.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Actions/Erd.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/Actions/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Actions/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/Actions/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Actions/index.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/AddEditKanbanStack.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/AddEditKanbanStack.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/AddEditKanbanStack.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/AddEditKanbanStack.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/Fields.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/Fields.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Fields.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/Filter.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/Filter.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Filter.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/ShareView.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/ShareView.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/ShareView.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/ShareView.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/Sort.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Sort.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/Sort.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/Sort.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/StackBy.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/StackBy.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/StackBy.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/StackBy.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/ViewMenu.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/ViewMenu.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/ViewMenu.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/ViewMenu.ts diff --git a/scripts/playwright/pages/Dashboard/common/Toolbar/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/common/Toolbar/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/common/Toolbar/index.ts diff --git a/scripts/playwright/pages/Dashboard/commonBase/Erd.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/commonBase/Erd.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/commonBase/Erd.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/commonBase/Erd.ts diff --git a/scripts/playwright/pages/Dashboard/index.ts b/packages/nc-gui/tests/playwright/pages/Dashboard/index.ts similarity index 100% rename from scripts/playwright/pages/Dashboard/index.ts rename to packages/nc-gui/tests/playwright/pages/Dashboard/index.ts diff --git a/scripts/playwright/pages/LoginPage/index.ts b/packages/nc-gui/tests/playwright/pages/LoginPage/index.ts similarity index 100% rename from scripts/playwright/pages/LoginPage/index.ts rename to packages/nc-gui/tests/playwright/pages/LoginPage/index.ts diff --git a/scripts/playwright/pages/ProjectsPage/index.ts b/packages/nc-gui/tests/playwright/pages/ProjectsPage/index.ts similarity index 100% rename from scripts/playwright/pages/ProjectsPage/index.ts rename to packages/nc-gui/tests/playwright/pages/ProjectsPage/index.ts diff --git a/scripts/playwright/pages/SharedForm/index.ts b/packages/nc-gui/tests/playwright/pages/SharedForm/index.ts similarity index 100% rename from scripts/playwright/pages/SharedForm/index.ts rename to packages/nc-gui/tests/playwright/pages/SharedForm/index.ts diff --git a/scripts/playwright/pages/SignupPage/index.ts b/packages/nc-gui/tests/playwright/pages/SignupPage/index.ts similarity index 100% rename from scripts/playwright/pages/SignupPage/index.ts rename to packages/nc-gui/tests/playwright/pages/SignupPage/index.ts diff --git a/scripts/playwright/playwright.config.ts b/packages/nc-gui/tests/playwright/playwright.config.ts similarity index 100% rename from scripts/playwright/playwright.config.ts rename to packages/nc-gui/tests/playwright/playwright.config.ts diff --git a/scripts/playwright/quickTests/commonTest.ts b/packages/nc-gui/tests/playwright/quickTests/commonTest.ts similarity index 100% rename from scripts/playwright/quickTests/commonTest.ts rename to packages/nc-gui/tests/playwright/quickTests/commonTest.ts diff --git a/scripts/playwright/quickTests/quickTests.spec.ts b/packages/nc-gui/tests/playwright/quickTests/quickTests.spec.ts similarity index 100% rename from scripts/playwright/quickTests/quickTests.spec.ts rename to packages/nc-gui/tests/playwright/quickTests/quickTests.spec.ts diff --git a/scripts/playwright/scripts/docker-compose-pg-pw-quick.yml b/packages/nc-gui/tests/playwright/scripts/docker-compose-pg-pw-quick.yml similarity index 100% rename from scripts/playwright/scripts/docker-compose-pg-pw-quick.yml rename to packages/nc-gui/tests/playwright/scripts/docker-compose-pg-pw-quick.yml diff --git a/scripts/playwright/scripts/docker-compose-pg.yml b/packages/nc-gui/tests/playwright/scripts/docker-compose-pg.yml similarity index 100% rename from scripts/playwright/scripts/docker-compose-pg.yml rename to packages/nc-gui/tests/playwright/scripts/docker-compose-pg.yml diff --git a/scripts/playwright/scripts/docker-compose-playwright-pg.yml b/packages/nc-gui/tests/playwright/scripts/docker-compose-playwright-pg.yml similarity index 100% rename from scripts/playwright/scripts/docker-compose-playwright-pg.yml rename to packages/nc-gui/tests/playwright/scripts/docker-compose-playwright-pg.yml diff --git a/scripts/playwright/scripts/docker-compose-playwright.yml b/packages/nc-gui/tests/playwright/scripts/docker-compose-playwright.yml similarity index 100% rename from scripts/playwright/scripts/docker-compose-playwright.yml rename to packages/nc-gui/tests/playwright/scripts/docker-compose-playwright.yml diff --git a/scripts/playwright/setup/db.ts b/packages/nc-gui/tests/playwright/setup/db.ts similarity index 100% rename from scripts/playwright/setup/db.ts rename to packages/nc-gui/tests/playwright/setup/db.ts diff --git a/scripts/playwright/setup/index.ts b/packages/nc-gui/tests/playwright/setup/index.ts similarity index 100% rename from scripts/playwright/setup/index.ts rename to packages/nc-gui/tests/playwright/setup/index.ts diff --git a/scripts/playwright/setup/server.ts b/packages/nc-gui/tests/playwright/setup/server.ts similarity index 100% rename from scripts/playwright/setup/server.ts rename to packages/nc-gui/tests/playwright/setup/server.ts diff --git a/scripts/playwright/setup/sqliteExec.ts b/packages/nc-gui/tests/playwright/setup/sqliteExec.ts similarity index 100% rename from scripts/playwright/setup/sqliteExec.ts rename to packages/nc-gui/tests/playwright/setup/sqliteExec.ts diff --git a/scripts/playwright/startPlayWrightServer.sh b/packages/nc-gui/tests/playwright/startPlayWrightServer.sh similarity index 100% rename from scripts/playwright/startPlayWrightServer.sh rename to packages/nc-gui/tests/playwright/startPlayWrightServer.sh diff --git a/scripts/playwright/storageState.json b/packages/nc-gui/tests/playwright/storageState.json similarity index 100% rename from scripts/playwright/storageState.json rename to packages/nc-gui/tests/playwright/storageState.json diff --git a/scripts/playwright/tests/01-webhook.spec.ts b/packages/nc-gui/tests/playwright/tests/01-webhook.spec.ts similarity index 100% rename from scripts/playwright/tests/01-webhook.spec.ts rename to packages/nc-gui/tests/playwright/tests/01-webhook.spec.ts diff --git a/scripts/playwright/tests/authChangePassword.spec.ts b/packages/nc-gui/tests/playwright/tests/authChangePassword.spec.ts similarity index 100% rename from scripts/playwright/tests/authChangePassword.spec.ts rename to packages/nc-gui/tests/playwright/tests/authChangePassword.spec.ts diff --git a/scripts/playwright/tests/baseShare.spec.ts b/packages/nc-gui/tests/playwright/tests/baseShare.spec.ts similarity index 100% rename from scripts/playwright/tests/baseShare.spec.ts rename to packages/nc-gui/tests/playwright/tests/baseShare.spec.ts diff --git a/scripts/playwright/tests/columnAttachments.spec.ts b/packages/nc-gui/tests/playwright/tests/columnAttachments.spec.ts similarity index 100% rename from scripts/playwright/tests/columnAttachments.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnAttachments.spec.ts diff --git a/scripts/playwright/tests/columnDuration.spec.ts b/packages/nc-gui/tests/playwright/tests/columnDuration.spec.ts similarity index 100% rename from scripts/playwright/tests/columnDuration.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnDuration.spec.ts diff --git a/scripts/playwright/tests/columnFormula.spec.ts b/packages/nc-gui/tests/playwright/tests/columnFormula.spec.ts similarity index 100% rename from scripts/playwright/tests/columnFormula.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnFormula.spec.ts diff --git a/scripts/playwright/tests/columnLinkToAnotherRecord.spec.ts b/packages/nc-gui/tests/playwright/tests/columnLinkToAnotherRecord.spec.ts similarity index 100% rename from scripts/playwright/tests/columnLinkToAnotherRecord.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnLinkToAnotherRecord.spec.ts diff --git a/scripts/playwright/tests/columnLookupRollup.spec.ts b/packages/nc-gui/tests/playwright/tests/columnLookupRollup.spec.ts similarity index 100% rename from scripts/playwright/tests/columnLookupRollup.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnLookupRollup.spec.ts diff --git a/scripts/playwright/tests/columnMultiSelect.spec.ts b/packages/nc-gui/tests/playwright/tests/columnMultiSelect.spec.ts similarity index 100% rename from scripts/playwright/tests/columnMultiSelect.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnMultiSelect.spec.ts diff --git a/scripts/playwright/tests/columnRelationalExtendedTests.spec.ts b/packages/nc-gui/tests/playwright/tests/columnRelationalExtendedTests.spec.ts similarity index 100% rename from scripts/playwright/tests/columnRelationalExtendedTests.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnRelationalExtendedTests.spec.ts diff --git a/scripts/playwright/tests/columnSingleSelect.spec.ts b/packages/nc-gui/tests/playwright/tests/columnSingleSelect.spec.ts similarity index 100% rename from scripts/playwright/tests/columnSingleSelect.spec.ts rename to packages/nc-gui/tests/playwright/tests/columnSingleSelect.spec.ts diff --git a/scripts/playwright/tests/erd.spec.ts b/packages/nc-gui/tests/playwright/tests/erd.spec.ts similarity index 100% rename from scripts/playwright/tests/erd.spec.ts rename to packages/nc-gui/tests/playwright/tests/erd.spec.ts diff --git a/scripts/playwright/tests/expandedFormUrl.spec.ts b/packages/nc-gui/tests/playwright/tests/expandedFormUrl.spec.ts similarity index 100% rename from scripts/playwright/tests/expandedFormUrl.spec.ts rename to packages/nc-gui/tests/playwright/tests/expandedFormUrl.spec.ts diff --git a/scripts/playwright/tests/import.spec.ts b/packages/nc-gui/tests/playwright/tests/import.spec.ts similarity index 100% rename from scripts/playwright/tests/import.spec.ts rename to packages/nc-gui/tests/playwright/tests/import.spec.ts diff --git a/scripts/playwright/tests/language.spec.ts b/packages/nc-gui/tests/playwright/tests/language.spec.ts similarity index 100% rename from scripts/playwright/tests/language.spec.ts rename to packages/nc-gui/tests/playwright/tests/language.spec.ts diff --git a/scripts/playwright/tests/metaSync.spec.ts b/packages/nc-gui/tests/playwright/tests/metaSync.spec.ts similarity index 100% rename from scripts/playwright/tests/metaSync.spec.ts rename to packages/nc-gui/tests/playwright/tests/metaSync.spec.ts diff --git a/scripts/playwright/tests/pagination.spec.ts b/packages/nc-gui/tests/playwright/tests/pagination.spec.ts similarity index 100% rename from scripts/playwright/tests/pagination.spec.ts rename to packages/nc-gui/tests/playwright/tests/pagination.spec.ts diff --git a/scripts/playwright/tests/projectOperations.spec.ts b/packages/nc-gui/tests/playwright/tests/projectOperations.spec.ts similarity index 100% rename from scripts/playwright/tests/projectOperations.spec.ts rename to packages/nc-gui/tests/playwright/tests/projectOperations.spec.ts diff --git a/scripts/playwright/tests/rolesCreate.spec.ts b/packages/nc-gui/tests/playwright/tests/rolesCreate.spec.ts similarity index 100% rename from scripts/playwright/tests/rolesCreate.spec.ts rename to packages/nc-gui/tests/playwright/tests/rolesCreate.spec.ts diff --git a/scripts/playwright/tests/rolesPreview.spec.ts b/packages/nc-gui/tests/playwright/tests/rolesPreview.spec.ts similarity index 100% rename from scripts/playwright/tests/rolesPreview.spec.ts rename to packages/nc-gui/tests/playwright/tests/rolesPreview.spec.ts diff --git a/scripts/playwright/tests/rolesSuperUser.spec.ts b/packages/nc-gui/tests/playwright/tests/rolesSuperUser.spec.ts similarity index 100% rename from scripts/playwright/tests/rolesSuperUser.spec.ts rename to packages/nc-gui/tests/playwright/tests/rolesSuperUser.spec.ts diff --git a/scripts/playwright/tests/tableColumnOperation.spec.ts b/packages/nc-gui/tests/playwright/tests/tableColumnOperation.spec.ts similarity index 100% rename from scripts/playwright/tests/tableColumnOperation.spec.ts rename to packages/nc-gui/tests/playwright/tests/tableColumnOperation.spec.ts diff --git a/scripts/playwright/tests/tableOperations.spec.ts b/packages/nc-gui/tests/playwright/tests/tableOperations.spec.ts similarity index 100% rename from scripts/playwright/tests/tableOperations.spec.ts rename to packages/nc-gui/tests/playwright/tests/tableOperations.spec.ts diff --git a/scripts/playwright/tests/toolbarOperations.spec.ts b/packages/nc-gui/tests/playwright/tests/toolbarOperations.spec.ts similarity index 100% rename from scripts/playwright/tests/toolbarOperations.spec.ts rename to packages/nc-gui/tests/playwright/tests/toolbarOperations.spec.ts diff --git a/scripts/playwright/tests/utils/sakila.ts b/packages/nc-gui/tests/playwright/tests/utils/sakila.ts similarity index 100% rename from scripts/playwright/tests/utils/sakila.ts rename to packages/nc-gui/tests/playwright/tests/utils/sakila.ts diff --git a/scripts/playwright/tests/viewForm.spec.ts b/packages/nc-gui/tests/playwright/tests/viewForm.spec.ts similarity index 100% rename from scripts/playwright/tests/viewForm.spec.ts rename to packages/nc-gui/tests/playwright/tests/viewForm.spec.ts diff --git a/scripts/playwright/tests/viewFormShareSurvey.spec.ts b/packages/nc-gui/tests/playwright/tests/viewFormShareSurvey.spec.ts similarity index 100% rename from scripts/playwright/tests/viewFormShareSurvey.spec.ts rename to packages/nc-gui/tests/playwright/tests/viewFormShareSurvey.spec.ts diff --git a/scripts/playwright/tests/viewGridShare.spec.ts b/packages/nc-gui/tests/playwright/tests/viewGridShare.spec.ts similarity index 100% rename from scripts/playwright/tests/viewGridShare.spec.ts rename to packages/nc-gui/tests/playwright/tests/viewGridShare.spec.ts diff --git a/scripts/playwright/tests/viewKanban.spec.ts b/packages/nc-gui/tests/playwright/tests/viewKanban.spec.ts similarity index 100% rename from scripts/playwright/tests/viewKanban.spec.ts rename to packages/nc-gui/tests/playwright/tests/viewKanban.spec.ts diff --git a/scripts/playwright/tests/viewMenu.spec.ts b/packages/nc-gui/tests/playwright/tests/viewMenu.spec.ts similarity index 100% rename from scripts/playwright/tests/viewMenu.spec.ts rename to packages/nc-gui/tests/playwright/tests/viewMenu.spec.ts diff --git a/scripts/playwright/tests/views.spec.ts b/packages/nc-gui/tests/playwright/tests/views.spec.ts similarity index 100% rename from scripts/playwright/tests/views.spec.ts rename to packages/nc-gui/tests/playwright/tests/views.spec.ts diff --git a/scripts/playwright/tsconfig.json b/packages/nc-gui/tests/playwright/tsconfig.json similarity index 100% rename from scripts/playwright/tsconfig.json rename to packages/nc-gui/tests/playwright/tsconfig.json