(str: string)
| 48 | describe('isMemberExpression', () => { |
| 49 | function commonAssertions(raw: (exp: ExpressionNode) => boolean) { |
| 50 | const fn = (str: string) => raw(createSimpleExpression(str)) |
| 51 | // should work |
| 52 | expect(fn('obj.foo')).toBe(true) |
| 53 | expect(fn('obj[foo]')).toBe(true) |
no test coverage detected