McJordan
McJordan
The `includes` property of the [`coverageConfig` ](https://modern-web.dev/docs/test-runner/cli-and-configuration/#configuration-file) object does not include untested files in the code coverage. Only files visited during tests are included in the coverage. I think having...
## What I did 1. Fixed a typo in the readme
Addresses an issue where `toggleAttribute` would not retain `force`, the second positional argument passed to it. Fixes https://github.com/webcomponents/polyfills/issues/533
### Description When calling `toggleAttribute`, [the polyfill](https://github.com/webcomponents/polyfills/blob/master/packages/scoped-custom-element-registry/src/scoped-custom-element-registry.js#L349) does not retain the [`force` argument](https://developer.mozilla.org/en-US/docs/Web/API/Element/toggleAttribute#syntax). This means that when I call `toggleAttribute('my-attribute', false)`, the attribute is applied when it should not be....