Luke Page
Luke Page
from: https://github.com/kss-node/kss-node/issues/52 What if my modifiers are not always class names? E.g. I often use ARIA role attributes as modifiers: ``` .btn[aria-disabled="true"] { ... } ``` I did not find...
With the older retry mechanism we could clear screenshots for a spec before retrying that spec.. however with this plugin, old screenshots are not deleted before retrying the spec, which...
It would be useful to be able to mock the timezone in the mock clock in a similiar way to https://github.com/Jimbly/timezone-mock or https://github.com/plaa/TimeShift-js We already use the jasmine clock everywhere...
The import/order rule ignores imports that don't have an identifier e.g. ``` import 'internal/module'; import 'module'; // completely ignored, even though it is external import 'internal/module'; ``` It appears to...
We use ReadonlyArray in typescript alot, but we get an error passing it to rc-slider, even though you do mutate the array. Changing it would only allow more types to...
## short term filter nodes passed to functions ## long term 1. move all constructor args to be {} 2. a) do not use the constructor.. use Element.create(args) and this.clone(newArgs)...
from https://github.com/less/less.js/issues/2541 but I've seen this in projects ``` // mixins.less .background(@image) { background-image: data-uri(@image); } ``` ``` // app/content/button.less button { .background("images/btn.jpg"); } ``` I would expect the image...
I attempted to merge coverage gained through playwright with coverage information from jest (using istanbul instrumentation). The problem is that the merge assumes that `statementMap`/`functionMap`/`branchMap` is assumed to be identical...
Having the assertion separate from the test makes it less likely to be reviewed and makes it harder to align assertion value and test. **Describe the solution you'd like** To...
See the bug on the typescript repo: https://github.com/microsoft/TypeScript/issues/49307#issuecomment-1195031370 It seems the typescript team will not fix this. Maybe the redux-toolkit types can be fixed to be compatible and still infer?...