Skip to content

Commit

Permalink
test: added case for typescript app
Browse files Browse the repository at this point in the history
  • Loading branch information
marianfoo committed Jan 30, 2024
1 parent bb9b40e commit a132adc
Show file tree
Hide file tree
Showing 32 changed files with 17,212 additions and 11 deletions.
88 changes: 83 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
Expand All @@ -28,6 +24,88 @@
"skipFiles": [
"<node_internals>/**"
]
},
{
"name": "Start ui5-typescript",
"type": "node",
"request": "launch",
"runtimeExecutable": "npx",
"cwd": "${workspaceFolder}/test/cds-plugin-ui5/packages/cap-server/app/ui5-typescript",
"windows": {
"runtimeExecutable": "npx.cmd"
},
"runtimeArgs": [
"fiori",
"run"
],
"args": [
"--open",
"test/flpSandbox.html#ui5typescript-tile"
],
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"port": 9229,
"env": {
"DEBUG": "--inspect",
"FIORI_TOOLS_URL_PARAMS": "sap-ui-xx-viewCache=false"
}
},
{
"name": "Start ui5-typescript Mock",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/test/cds-plugin-ui5/packages/cap-server/app/ui5-typescript",
"runtimeExecutable": "npx",
"windows": {
"runtimeExecutable": "npx.cmd"
},
"runtimeArgs": [
"fiori",
"run"
],
"args": [
"--config",
"./ui5-mock.yaml",
"--open",
"test/flpSandbox.html#ui5typescript-tile"
],
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"port": 9229,
"env": {
"FIORI_TOOLS_URL_PARAMS": "sap-ui-xx-viewCache=false"
}
},
{
"name": "Start ui5-typescript Local",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/test/cds-plugin-ui5/packages/cap-server/app/ui5-typescript",
"runtimeExecutable": "npx",
"windows": {
"runtimeExecutable": "npx.cmd"
},
"runtimeArgs": [
"fiori",
"run"
],
"args": [
"--config",
"./ui5-local.yaml",
"--open",
"test/flpSandbox.html#ui5typescript-tile"
],
"console": "internalConsole",
"internalConsoleOptions": "openOnSessionStart",
"outputCapture": "std",
"port": 9229,
"env": {
"FIORI_TOOLS_URL_PARAMS": "sap-ui-xx-viewCache=false"
}
}
]
],
"compounds": [],
"version": "0.2.0"
}
198 changes: 198 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
packages:
- "."
- "test/cds-plugin-ui5/packages/*"
- "test/cds-plugin-ui5/packages/cap-server/app/uimodule"
- "test/cds-plugin-ui5/packages/cap-server/app/*"
- "test/cds-plugin-ui5-deps/packages/*"
- "test/sapux/packages/*"
- "test/http"
Loading

0 comments on commit a132adc

Please sign in to comment.