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
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@eslint/js": "9.35.0",
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"@lwc/test-utils-lwc-internals": "link:./scripts/test-utils",
"@nx/js": "21.4.1",
"@nx/js": "21.5.2",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.1",
Expand All @@ -51,9 +51,9 @@
"@swc/core": "~1.13.5",
"@swc/helpers": "~0.5.17",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.18.1",
"@types/node": "^22.18.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.9",
"@vitest/eslint-plugin": "^1.3.12",
"@vitest/ui": "^3.2.4",
"bytes": "^3.1.2",
"es-module-lexer": "^1.7.0",
Expand All @@ -62,19 +62,19 @@
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.32.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"isbinaryfile": "^5.0.6",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.6",
"magic-string": "^0.30.19",
"nx": "21.4.1",
"nx": "21.5.2",
"prettier": "^3.6.2",
"rollup": "^4.50.1",
"rollup": "^4.50.2",
"terser": "^5.44.0",
"tslib": "^2.8.1",
"typescript": "5.8.2",
"typescript-eslint": "8.42.0",
"typescript-eslint": "8.44.0",
"vitest": "^3.2.4"
},
"lint-staged": {
Expand Down
14 changes: 7 additions & 7 deletions packages/@lwc/integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
},
"devDependencies": {
"@lwc/rollup-plugin": "8.22.3",
"@wdio/cli": "^9.17.1",
"@wdio/local-runner": "^9.17.0",
"@wdio/mocha-framework": "^9.17.0",
"@wdio/sauce-service": "^9.17.0",
"@wdio/spec-reporter": "^9.17.0",
"@wdio/static-server-service": "^9.16.2",
"@wdio/cli": "^9.19.2",
"@wdio/local-runner": "^9.19.2",
"@wdio/mocha-framework": "^9.19.2",
"@wdio/sauce-service": "^9.19.2",
"@wdio/spec-reporter": "^9.19.2",
"@wdio/static-server-service": "^9.19.2",
"deepmerge": "^4.3.1",
"dotenv": "^17.2.2",
"lwc": "8.22.3",
"minimist": "^1.2.8",
"webdriverio": "^9.0.7"
"webdriverio": "^9.19.2"
},
"volta": {
"extends": "../../../package.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ describe('Event target in slot elements', () => {

it('should receive event with correct target', async () => {
const select = await browser.shadowDeep$('integration-slotted-event-target', 'select');
await select.selectByVisibleText('Second');
await select.selectByIndex(1); // Second option (0-indexed)

const element = await browser.shadowDeep$(
'integration-slotted-event-target',
'.target-is-select'
);

assert.strictEqual(await element.getText(), 'Event Target is select element');
});
});
2 changes: 1 addition & 1 deletion packages/@lwc/integration-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"devDependencies": {
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"rollup": "^4.50.1",
"rollup": "^4.50.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^12.1.4",
"lwc": "8.22.3",
"rollup": "^4.50.1",
"rollup": "^4.50.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.8.1"
Expand Down
Loading