(v: Json, u: Json)
| 268 | expect(cond(['ProductQ', ['Add', 'x', 2]])).toBe(false); |
| 269 | expect(cond(['ProductQ', 'x'])).toBe(false); |
| 270 | }); |
| 271 | |
| 272 | test('MemberQ[{…}, u] tests structural membership', () => { |
| 273 | const inv = ['List', 'ArcSin', 'ArcCos', 'ArcSinh', 'ArcCosh']; |
| 274 | expect(cond(['MemberQ', inv, 'ArcSin'])).toBe(true); |
no test coverage detected