Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Closed
Description
Suggestion
It's not clear what these test cases are attempting to test.
typescript-eslint/packages/eslint-plugin/tests/rules/no-base-to-string.test.ts
Lines 137 to 140 in2e2433b
` | |
let numbers = [1, 2, 3]; | |
String(...a); | |
`, |
typescript-eslint/packages/eslint-plugin/tests/rules/no-base-to-string.test.ts
Lines 280 to 294 in2e2433b
{ | |
code:` | |
let objects = [{}, {}]; | |
String(...objects); | |
`, | |
errors:[ | |
{ | |
data:{ | |
certainty:'will', | |
name:'...objects', | |
}, | |
messageId:'baseToString', | |
}, | |
], | |
}, |
These test cases get in the way of changes necessary for#10430 and#8585
Additional Info
No response