You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(lint): Allow ts-ignore in Node integration tests (#13254)
Discovered today that TS 3.8 doesn't understand `// @ts-expect-error`.
Since we test on Node 22 also with TS 3.8, we shouldn't use
`ts-expect-error` in test files as TS 3.8 would simply ignore the
comment and throw a type error.
Instead, it's fine to use `@ts-ignore` in these test files.
0 commit comments