Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2eb4b1d
fix(tooling): remove rollup
Riteshfyi Feb 6, 2026
5386b17
fix(tooling): remove rollup dependencies
Riteshfyi Feb 6, 2026
5d7c01c
fix(tooling): update .esm.js output to .mjs
Riteshfyi Feb 8, 2026
bc1e670
fix(tooling): update formatting
Riteshfyi Feb 8, 2026
cf1f834
fix(tooling): add new docs
Riteshfyi Feb 9, 2026
3bebaee
Merge branch 'next' into wp
Riteshfyi Feb 9, 2026
81d1d4e
Merge remote-tracking branch 'upstream/next' into wp
Riteshfyi Feb 9, 2026
5328b6d
fix(tooling): move to earlier docs
Riteshfyi Feb 9, 2026
bd8c91d
Merge remote-tracking branch 'origin/wp' into wp
Riteshfyi Feb 9, 2026
895331e
fix(tooling): remove wdio & upgrade to playwright
Riteshfyi Feb 17, 2026
bbb91b6
fix(tooling) remove unnecessary dependencies
Riteshfyi Feb 18, 2026
922024f
merge next into pw
Riteshfyi Feb 19, 2026
330dc68
fix(tooling): update TEST URL
Riteshfyi Feb 19, 2026
a1fe393
fix(tooling): update TEST URL
Riteshfyi Feb 19, 2026
52c3692
Merge branch 'next' into pw
Riteshfyi Feb 19, 2026
f6ef235
fix(tooling): update script
Riteshfyi Feb 23, 2026
818f27e
Merge remote-tracking branch 'origin/pw' into pw
Riteshfyi Feb 23, 2026
ef80ca5
fix(tooling): update yarn.lock
Riteshfyi Feb 23, 2026
8b2ccee
fix(tooling): refactor changes
Riteshfyi Feb 27, 2026
cb16835
Merge branch 'next' into pw
Riteshfyi Feb 27, 2026
0d73442
fix(tooling): update playwright config
Riteshfyi Feb 27, 2026
31ce16d
Merge 'origin/pw' into pw
Riteshfyi Feb 27, 2026
2255063
fix(tooling): upgrade workflow
Riteshfyi Mar 2, 2026
76ded35
Merge branch 'next' into pw
Riteshfyi Mar 2, 2026
1e6d985
fix(tooling): move npm to yarn for widgets
Riteshfyi Mar 2, 2026
5dd1386
Merge remote-tracking branch 'origin/pw' into pw
Riteshfyi Mar 2, 2026
69ad936
fix(tooling): upgrade script
Riteshfyi Mar 2, 2026
87de470
fix(tooling): upgrade playwright config
Riteshfyi Mar 2, 2026
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
3 changes: 3 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,9 @@ jobs:
path: '**/dist'
key: dist-${{ env.rid }}

- name: Install Playwright Browsers
run: npx playwright install --with-deps

- name: Test E2E
run: yarn workspace @webex/widgets run test:e2e

Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
"clean": "yarn workspaces foreach --all --topological --parallel run clean && rm -rf node_modules",
"clean:dist": "yarn workspaces foreach --all --topological --parallel run clean:dist",
"test:unit": "yarn run test:tooling && yarn run test:cc-widgets",
"test:e2e:cc": "TEST_SCOPE=cc yarn playwright test",
"test:e2e:meetings": "TEST_SCOPE=meetings yarn playwright test",
"test:e2e": "yarn playwright test",
"test:styles": "yarn workspaces foreach --all --exclude webex-widgets run test:styles",
"test:tooling": "jest --coverage",
Expand All @@ -69,4 +71,4 @@
"prepare": "husky",
"package-tools": "webex-package-tools"
}
}
}
13 changes: 3 additions & 10 deletions packages/@webex/widgets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"release": "semantic-release",
"release:debug": "semantic-release --debug",
"release:dry-run": "semantic-release --dry-run",
"start": "npm run demo:serve",
"test:e2e": "npm run demo:build && wdio wdio.conf.js",
"start": "yarn run demo:serve",
"test:e2e": "yarn run build:src && cd ../../.. && yarn run test:e2e:meetings",
"test:eslint": "echo 'Broken eslint tests'",
"test:eslint:broken": "eslint src/"
},
Expand Down Expand Up @@ -55,16 +55,9 @@
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@momentum-ui/react": "^23.21.4",
"@playwright/test": "1.51.1",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@wdio/cli": "^7.3.1",
"@wdio/jasmine-framework": "^7.4.6",
"@wdio/junit-reporter": "^7.4.2",
"@wdio/local-runner": "^7.4.6",
"@wdio/selenium-standalone-service": "^7.5.2",
"@wdio/spec-reporter": "^7.4.3",
"@wdio/static-server-service": "^7.5.7",
"@webex/test-users": "^1.157.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
Expand Down
158 changes: 0 additions & 158 deletions packages/@webex/widgets/tests/WebexMeeting.e2e.js

This file was deleted.

29 changes: 0 additions & 29 deletions packages/@webex/widgets/tests/pages/MeetingWidget.page.js

This file was deleted.

23 changes: 0 additions & 23 deletions packages/@webex/widgets/tests/pages/Samples.page.js

This file was deleted.

54 changes: 0 additions & 54 deletions packages/@webex/widgets/tests/util.js

This file was deleted.

Loading