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

Steps to replicate: In Ubuntu Linux(WSL and github CI) without browser. `npm init @open-wc` as web component with test enabled. `npm i -D @web/test-runner-puppeteer` `npm run test` passed successfully, but...

Draft until open questions are resolved. ## Open questions ### What shall we do with the leftovers of the `parse5-utils` package in this repo? The following functions remain: * `isHtmlFragment`...

When setting the option `coverageConfig: { reporters: ["text"] }`, the report displayed in the console is cut off by information that overlays the text report. ![cut off report](https://user-images.githubusercontent.com/11370343/190876109-cf4bc71d-77fb-40d5-8b87-e3c51b931483.png) This issue...

There seems to be some issue with `coverageConfig.exclude`. It is part of the `finalConfig` which is passed out of parseConfig.js, but does not seem to exclude files from the coverage...

Currently when you use `dev-server-esbuild` to transpile files, `web-test-runner` doesn't display errors that occurs during the transpilation process. The only feedback that you get is: ``` test/specs/autocomplete.spec.ts: 🚧 Browser logs:...

`esbuildPlugin` doesn't expose a property that would allow to passthrough plugins to `esbuild`. In my use case I need to leverage [esbuild-sass-plugin](https://www.npmjs.com/package/esbuild-sass-plugin) to transpile LIT components that use SASS stylesheets....

Using rollup-plugin-typescript-paths works great for resolving custom imports; like `@interal/helpers` via TS config paths. Example usage: ```js import { esbuildPlugin } from '@web/dev-server-esbuild'; import { fromRollup } from '@web/dev-server-rollup'; import...

Thanks for the awesome work on web-test-runner! We recently migrated from karma and it's been a joy to use. Is it possible to hide the progress bar from printing? I...

Can we run the dev server over https? I created locally signed ssl keys using `mkcert`, by following this guide: https://web.dev/how-to-use-local-https/ After setting up the cert and key files to...

documentation
good first issue

I've been using @web/dev-server and @web/test-runner in a number of different context and I'm seeing some setup and config friction that I think could be solved with a unified approach...