dom-accessibility-api has seen its description retrieval fixed a while ago but you guys still depends on ^0.5.9.
Describe alternatives you've considered:
for now I overrides the version in my package.json. But I have to explicitly depend on "@testing-library/dom"
{
"devDependencies": {
"@testing-library/user-event": "14.4.3",
"@testing-library/angular": "17.3.7",
"@testing-library/dom": "^10.4.0",
"dom-accessibility-api": "0.6.3",
},
"overrides": {
"@testing-library/dom": {
"dom-accessibility-api": "$dom-accessibility-api"
}
}
}
I think it would makes sense to bump directly into your package.json
Thanks
dom-accessibility-api has seen its description retrieval fixed a while ago but you guys still depends on ^0.5.9.
Describe alternatives you've considered:
for now I overrides the version in my package.json. But I have to explicitly depend on "@testing-library/dom"
{ "devDependencies": { "@testing-library/user-event": "14.4.3", "@testing-library/angular": "17.3.7", "@testing-library/dom": "^10.4.0", "dom-accessibility-api": "0.6.3", }, "overrides": { "@testing-library/dom": { "dom-accessibility-api": "$dom-accessibility-api" } } }I think it would makes sense to bump directly into your package.json
Thanks