web icon indicating copy to clipboard operation
web copied to clipboard

Guides, tools and libraries for modern web development.

Results 360 web issues
Sort by recently updated
recently updated
newest added

Bumps [micromatch](https://github.com/micromatch/micromatch) from 4.0.5 to 4.0.8. Release notes Sourced from micromatch's releases. 4.0.8 Ultimate release that fixes both CVE-2024-4067 and CVE-2024-4068. We consider the issues low-priority, so even if you...

dependencies

The following error is thrown in CI and can be also reproduced locally using Node 22.7.0. ``` $ npm run test:node -w @web/config-loader > @web/[email protected] test:node > mocha test/**/*.test.js --reporter...

## What I did Upgraded `puppeteer-core` and `puppeteer` to v23. This includes the following breaking changes: - Renamed `product` to `browser`, see https://github.com/puppeteer/puppeteer/pull/12757 - Changed return type of `page.screenshot()`, see...

Consider using [`setWindowSize`](https://webdriver.io/docs/api/browser/setWindowSize.html) API provided by Webdriver to implement `setViewportSize` command: ```js browser.setWindowSize(width, height); ``` This is needed in one of our visual regression tests so I'm going to handle...

enhancement

See this repo for a reproduction [https://github.com/Sanderovich/web-test-runner-called-with-match-error-reproduction](https://github.com/Sanderovich/web-test-runner-called-with-match-error-reproduction). When an `expect(spy).to.be.calledWithMatch()` is unsuccesful the expect throws an `AssertionError` that web test runner can not handle which causes the following exception. ![image](https://github.com/user-attachments/assets/a96ded18-a78d-41fb-8a21-0edbb8fb1778)...

Spotted two small "imperfections" in CONTRIBUTING.md guide while reading them. ## What I did - `git remote add` raises and error: remote upstream already exists. That's because GitHub adds them...

Hello, I know this project is still not production ready. But I would like to highlight something we currently use with Karma that needs to be considered when moving to...

Hi, this was a similar issue I reported in the WebDriverIO project (which since has gotten resolved), and seems to occur in this project as well (reference: https://github.com/webdriverio/webdriverio/issues/13206). Coming from...

I see `export function selectOption` in `node_modules/@web/test-runner-commands/browser/commands.mjs` but it is not present in `node_modules/@web/test-runner-commands/browser/commands.d.ts`. I'm on version `0.6.5` of `@web/test-runner-commands` (the current latest version).

I'm currently migrating from Karma to Web-test-runner. When using [Rollup Inject](https://github.com/rollup/plugins/tree/master/packages/inject), some files get modified to include additional `import` lines. This additions are not taking into consideration when generating the...