Refactor EnumerableSet.behavior.js for reuse in the community repo (#5441)

This commit is contained in:
Hadrien Croubois
2025-01-20 18:03:16 +01:00
committed by GitHub
parent ea736bd45b
commit 332bcb5f4d

View File

@ -47,7 +47,7 @@ function shouldBehaveLikeSet() {
it('retrieves existing element', async function () {
await this.methods.add(this.valueA);
expect(await this.methods.at(0)).to.equal(this.valueA);
expect(await this.methods.at(0)).to.deep.equal(this.valueA);
});
});