(error, retry, fail)
| 487 | }) |
| 488 | }, |
| 489 | onError(error, retry, fail) { |
| 490 | if (error.message.match(/foo/)) { |
| 491 | retry() |
| 492 | } else { |
| 493 | fail() |
| 494 | } |
| 495 | }, |
| 496 | }) |
| 497 | |
| 498 | const app = createApp({ |
nothing calls this directly
no test coverage detected
searching dependent graphs…