Skip to content

Commit

Permalink
fix int test
Browse files Browse the repository at this point in the history
  • Loading branch information
joergmann committed Jan 23, 2025
1 parent 56db85a commit 002d8b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:
- run: |
npm i -g npm
npm ci
npm run test:common
npm run rollup:off
- name: Run integration test with non-admin user on windows
if: matrix.os == 'windows-latest'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"test": "npm run test:common && npm run test:rollup-off && npm run test:rollup-on",
"test:rollup-on": "npm run rollup && npm run rollup:on && jest --silent",
"test:rollup-off": "npm run rollup:off && jest --silent",
"test:integration": "npm run test:common && npm run rollup:off && jest --testMatch \"**/test/**/*.integrationtest.js\"",
"test:integration": "jest --testMatch \"**/test/**/*.integrationtest.js\"",
"rollup": "rm -rf dist/ && mkdir -p etc/ && npx -y @microsoft/api-extractor run --local --verbose && .github/rollup-patch.js",
"rollup:on": "npm pkg set typings=dist/cds-types.d.ts && [ -d 'apis' ] && mv -- apis -apis || true",
"rollup:off": "npm pkg set typings=apis/cds.d.ts && [ -d '-apis' ] && mv -- -apis apis || true",
Expand Down

0 comments on commit 002d8b8

Please sign in to comment.