Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test:e2e:cucumber": "NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e --parallel ${PARALLEL:-1}",
"test:e2e:cucumber:chromium": "BROWSER=chromium NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e --parallel ${PARALLEL:-1}",
"test:e2e:cucumber:firefox": "BROWSER=firefox NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e --parallel ${PARALLEL:-1}",
"test:e2e:cucumber:webkit": "BROWSER=webkit NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e --parallel ${PARALLEL:-1}",
"test:e2e:cucumber:webkit": "BROWSER=webkit NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e --parallel ${PARALLEL:-1} --tags 'not @webkit-skip'",
"test:e2e:mobile-parallel": "bash -c 'FORCE_COLOR=1 pnpm run test:e2e:mobile-chromium > mobile-chromium.log 2>&1 & pid1=$!; FORCE_COLOR=1 pnpm run test:e2e:mobile-webkit > mobile-webkit.log 2>&1 & pid2=$!; FORCE_COLOR=1 pnpm run test:e2e:ipad-chromium > ipad-chromium.log 2>&1 & pid3=$!; FORCE_COLOR=1 pnpm run test:e2e:ipad-safari > ipad-safari.log 2>&1 & pid4=$!; wait $pid1; ec1=$?; wait $pid2; ec2=$?; wait $pid3; ec3=$?; wait $pid4; ec4=$?; echo \"=== LOG FILES ===\"; for log in *.log; do echo \"--- $log ---\"; cat $log; echo; done; echo \"=== RESULTS ===\"; echo \"Mobile Chromium: $([ $ec1 -eq 0 ] && echo ✅ PASSED || echo ❌ FAILED)\"; echo \"Mobile WebKit: $([ $ec2 -eq 0 ] && echo ✅ PASSED || echo ❌ FAILED)\"; echo \"iPad Chromium: $([ $ec3 -eq 0 ] && echo ✅ PASSED || echo ❌ FAILED)\"; echo \"iPad Safari: $([ $ec4 -eq 0 ] && echo ✅ PASSED || echo ❌ FAILED)\"; if [ $ec1 -ne 0 ] || [ $ec2 -ne 0 ] || [ $ec3 -ne 0 ] || [ $ec4 -ne 0 ]; then exit 1; fi'",
"test:e2e:mobile-chromium": "BROWSER=mobile-chromium NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e ./tests/e2e/cucumber/features/mobile-view",
"test:e2e:mobile-webkit": "FAIL_ON_UNCAUGHT_CONSOLE_ERR=false BROWSER=mobile-webkit NODE_TLS_REJECT_UNAUTHORIZED=0 TS_NODE_PROJECT=./tests/e2e/cucumber/tsconfig.json cucumber-js --profile=e2e ./tests/e2e/cucumber/features/mobile-view",
Expand Down Expand Up @@ -54,7 +54,7 @@
"@opencloud-eu/eslint-config": "workspace:*",
"@opencloud-eu/prettier-config": "workspace:*",
"@opencloud-eu/tsconfig": "workspace:*",
"@playwright/test": "1.57.0",
"@playwright/test": "1.58.0",
"@tailwindcss/vite": "^4.1.11",
"@types/mark.js": "^8.11.12",
"@types/lodash-es": "^4.17.12",
Expand All @@ -72,11 +72,11 @@
"eslint": "9.39.2",
"franc-min": "^6.2.0",
"glob": "13.0.0",
"happy-dom": "20.3.7",
"happy-dom": "20.4.0",
"jsdom": "^27.0.0",
"license-checker-rseidelsohn": "4.4.2",
"node-fetch": "3.3.2",
"pino": "10.2.1",
"pino": "10.3.0",
"pino-pretty": "13.1.3",
"qs": "6.14.1",
"requirejs": "2.3.8",
Expand All @@ -96,7 +96,7 @@
"vitest-mock-extended": "3.1.0",
"vue": "^3.5.23",
"vue-demi": "0.14.10",
"vue-tsc": "3.2.3",
"vue-tsc": "3.2.4",
"vue3-gettext": "2.4.0"
},
"engines": {
Expand Down
106 changes: 53 additions & 53 deletions pnpm-lock.yaml

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

5 changes: 3 additions & 2 deletions tests/e2e/cucumber/features/smoke/sse.feature
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ Feature: server sent events
| Alice |
| Brian |
| Carol |


@webkit-skip
Scenario: space sse events
Given "Admin" assigns following roles to the users using API
| id | role |
Expand Down Expand Up @@ -127,7 +128,7 @@ Feature: server sent events
And "Brian" logs out
And "Alice" logs out


@webkit-skip
Scenario: share sse events
When "Brian" logs in
And "Brian" navigates to the shared with me page
Expand Down