Compare commits

...

4 Commits

Author SHA1 Message Date
Christian Georgi
173eda2d72 Merge branch 'main' into mocha 2022-10-05 16:16:51 +02:00
Christian Georgi
a486b1ee19 Enforce parallel and recursive 2022-08-15 15:42:05 +02:00
Christian Georgi
8eb13d1e45 Increase timeout 2022-08-15 14:56:59 +02:00
Christian Georgi
defb62d232 Execute mocha tests as well 2022-08-15 14:55:17 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -26,4 +26,5 @@ jobs:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm i -g npm@8 - run: npm i -g npm@8
- run: npm ci - run: npm ci
- run: npm test - run: npm run test
- run: npm run test:mocha

View File

@@ -37,6 +37,7 @@
"jest": "npx jest", "jest": "npx jest",
"start": "cds watch fiori", "start": "cds watch fiori",
"test": "npm run jest -- --silent", "test": "npm run jest -- --silent",
"test:mocha": "npx mocha --parallel --recursive --timeout 20000",
"test:hello": "cd hello && npm test" "test:hello": "cd hello && npm test"
}, },
"jest": { "jest": {