(token, path)
| 74 | } |
| 75 | |
| 76 | function del(token, path) { |
| 77 | return fetch(`${API_URL}${path}`, { |
| 78 | method: 'DELETE', |
| 79 | headers: { |
| 80 | Authorization: `Bearer ${token}`, |
| 81 | }, |
| 82 | }); |
| 83 | } |
| 84 | |
| 85 | async function prepareTestBitBucketRepo({ lfs }) { |
| 86 | const { owner, repo, token } = await getEnvs(); |
no outgoing calls
no test coverage detected