This commit is contained in:
Nathan Bierema 2025-03-05 16:50:23 -05:00
parent 57d5e08756
commit f04e2256bd

View File

@ -102,7 +102,7 @@ describe('Immutable', function () {
const scndProp = parsed.data.scnd.data.prop; const scndProp = parsed.data.scnd.data.prop;
expect(fstProp).toEqual(scndProp); expect(fstProp).toEqual(scndProp);
expect(Array.isArray(obj.get('fst')!.get('prop'))).toBe(true); expect(Array.isArray(obj.get('fst').get('prop'))).toBe(true);
}); });
}); });