(s)
| 85 | } |
| 86 | |
| 87 | function parseAction(s) { |
| 88 | const actions = parseMultipleActions(s); |
| 89 | if (actions == null) { |
| 90 | return null; |
| 91 | } |
| 92 | expect(actions).to.have.length(1); |
| 93 | return actions[0]; |
| 94 | } |
| 95 | |
| 96 | it('should parse full form', () => { |
| 97 | const a = parseAction('event1:target1.method1'); |
no test coverage detected