(url: string)
| 71 | } |
| 72 | |
| 73 | function providerCfg(url: string) { |
| 74 | return { |
| 75 | ...cfg, |
| 76 | provider: { |
| 77 | ...cfg.provider, |
| 78 | test: { |
| 79 | ...cfg.provider.test, |
| 80 | options: { |
| 81 | ...cfg.provider.test.options, |
| 82 | baseURL: url, |
| 83 | }, |
| 84 | }, |
| 85 | }, |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | function agent(): Agent.Info { |
| 90 | return { |
no outgoing calls
no test coverage detected