()
| 161 | |
| 162 | it('should provide the service', () => { |
| 163 | const Test = () => { |
| 164 | const [, , service] = useActor(fetchMachine); |
| 165 | |
| 166 | if (!(service instanceof Actor)) { |
| 167 | throw new Error('service not instance of Interpreter'); |
| 168 | } |
| 169 | |
| 170 | return null; |
| 171 | }; |
| 172 | |
| 173 | render(<Test />); |
| 174 | }); |
nothing calls this directly
no test coverage detected
searching dependent graphs…