This commit is contained in:
Chris Wanstrath 2025-10-29 13:14:37 -07:00
parent 92ce43b508
commit d939322f6e

View File

@ -476,7 +476,6 @@ describe('dict operations', () => {
await expect(`map = [a=1]; dict.set map 'a' 100; map.a`).toEvaluateTo(100, globals)
})
test('dict.empty? checks if dict is empty', async () => {
await expect(`dict.empty? [=]`).toEvaluateTo(true, globals)
await expect(`dict.empty? [a=1]`).toEvaluateTo(false, globals)