Skip to content

Commit 56d95b4

Browse files
committed
all win
1 parent f4fcc09 commit 56d95b4

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/playwright.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ jobs:
2525
start extension/AxonIvyEngine/bin/AxonIvyEngine.exe
2626
npm run test:playwright:download:vscode
2727
npm run test:playwright
28+
env:
29+
CI: true
30+
RUN_STABLE_VERSION: true
2831
- uses: actions/upload-artifact@v4
2932
if: ${{ !cancelled() }}
3033
with:
3134
name: playwright-videos
32-
path: playwright/playwright-videos/
35+
path: |
36+
playwright/playwright-videos/
37+
extension/AxonIvyEngine/logs
3338
retention-days: 3
3439
# name: Playwright Tests
3540
# on:

playwright/tests/inscription-view.spec.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ test.describe('Inscription View', () => {
3939
cleanUp();
4040
});
4141

42-
// eslint-disable-next-line playwright/no-focused-test
43-
test.only('Check Process Editor Connector', async () => {
42+
test('Check Process Editor Connector', async () => {
4443
let element = processEditor.locatorForPID(userDialogPID1);
4544
await expect(element).toBeVisible();
4645
await element.dblclick();

0 commit comments

Comments
 (0)