()
| 4 | |
| 5 | class User { |
| 6 | constructor() { |
| 7 | const url = `http://localhost:${TestHelper.graphQLServerPort()}`; |
| 8 | this.api = axios.create({ |
| 9 | baseURL: url, |
| 10 | }); |
| 11 | } |
| 12 | |
| 13 | list() { |
| 14 | return this.api.get('/users').then(res => res.data); |
nothing calls this directly
no test coverage detected