mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 05:18:03 +00:00
47838889f4
* feat: add test utils * test: fix compatibility problem * refactor: use esm * refactor: change require to import * test: add a test * chore: optimize launch.json * chore(jest): optimize config * test: fix failed * test(Action): fix failed * test: migration test from nocobase-next * test: fix failed * chore: set css to false * fix: fix errors * test(Filter): add test * test(BlockItem): add test * test(Calendar): add test * refactor: migrate testUtils to client * fix: avoid error * refactor: fix lint error * Revert "refactor: migrate testUtils to client" This reverts commit ae569e2021a5c720111518cf3f2236e761a7186d. * test: fix test failed * refactor: migrate tesetUtils to @nocobase/test/client * fix(Select): fix BUG * refactor: remove useless code * Revert "refactor: migrate tesetUtils to @nocobase/test/client" This reverts commit 70d2211d5af546ae3fffaf5b53a326be8e194b34. * test(AssociationSelect): add test * test(CardItem): add test * test(CollectionSelect): add test * test(Cron): add test * test(Details): add test * test(ErrorFallback): add test * test(Form): add test * fix: fix CI * test(FormItem): add test * test(FormV2): add test * test(G2Plot): add test * test(Gantt): add test * test(Grid): add test * test(GridCard): add test * test(Kanban): add test * test(List): add test * test(Menu): add test * test(Page): add test * test(Pagination): add test * test(Preview): add test * test(RemoteSelect): add test * test: fix: failed * refactor: remove useless code * test(Table): add test * test(TableV2): add test * test(Tabs): add test * test(Variable): add test * test(Upload): add test * chore: comment * Revert "refactor: change require to import" This reverts commit 3a23607e6faeda6f8b5bee02b9d8fa33bf9d2684. * refactor: remove useless code * fix: fix translation bug * fix: fix export position * test: update snap
96 lines
2.0 KiB
JSON
96 lines
2.0 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Server",
|
|
"runtimeArgs": [
|
|
"-r",
|
|
"dotenv/config",
|
|
"-r",
|
|
"tsconfig-paths/register",
|
|
"-r",
|
|
"ts-node/register"
|
|
],
|
|
"args": [
|
|
"${workspaceRoot}/packages/app/server/src/index.ts",
|
|
"start"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Jest Tests",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"--inspect-brk",
|
|
"test",
|
|
"--runInBand",
|
|
"${file}"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"windows": {
|
|
"runtimeArgs": [
|
|
"run",
|
|
"--inspect-brk",
|
|
"test",
|
|
"--runInBand",
|
|
"/${fileBasename}"
|
|
],
|
|
}
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Client Tests",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test:client",
|
|
"${file}"
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"windows": {
|
|
"runtimeArgs": [
|
|
"run",
|
|
"test:client",
|
|
"${relativeFile}"
|
|
],
|
|
}
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug Migration",
|
|
"runtimeExecutable": "yarn",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"--inspect-brk",
|
|
"nocobase",
|
|
"migrator",
|
|
"up",
|
|
],
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen"
|
|
},
|
|
]
|
|
}
|