Assert.prototype.equal(actual: unknown,expected: unknown,message?: string): void
Asserts that actual == expected (loose equality, allows type coercion).
Prefer Assert.prototype.strictEqual for most comparisons. Use Assert.prototype.notEqual
for the inverse.