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
test: use assert.strictEqual / notStrictEqual for === and !== checks
`assert.ok(x === y)` / `assert(x !== y)` reduce to "Expected true, got
false" on failure — the actual operand values are lost, which makes
flaky-test debugging painful. Switching the affected call sites to
`assert.strictEqual(x, y)` / `assert.notStrictEqual(x, y)` preserves
any existing message argument and includes both operands in the
failure output automatically.
Add two `no-restricted-syntax` selectors in `eslint.config.mjs` to
prevent regressions, scoped to the existing `TEST_FILES` glob.
0 commit comments