We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e51374 commit 7a79e0aCopy full SHA for 7a79e0a
2 files changed
.github/workflows/main-workflow.yml
@@ -31,7 +31,7 @@ jobs:
31
TMS_CONFIGURATION_ID: ${{ secrets.TMS_CONFIGURATION_ID }}
32
TMS_TEST_RUN_NAME: ${{ secrets.TMS_TEST_RUN_NAME }}
33
# TMS_ADAPTER_MODE: 2
34
- run: npm playwright test fast.spec.ts
+ run: npm run playwright:test
35
- name: Allure report
36
run: npm run allure:generate
37
- uses: actions/upload-artifact@v4
package.json
@@ -4,7 +4,8 @@
4
"main": "index.js",
5
"scripts": {
6
"allure:generate": "allure generate \"./allure-results\" --clean",
7
- "allure:open": "allure open \"./allure-report\""
+ "allure:open": "allure open \"./allure-report\"",
8
+ "playwright:test": "playwright test fast.spec.ts"
9
},
10
"keywords": [],
11
"author": "",
0 commit comments