(projectName: string, featureId: number)
| 148 | } |
| 149 | |
| 150 | export async function deleteFeature(projectName: string, featureId: number): Promise<void> { |
| 151 | await fetchJSON(`/projects/${encodeURIComponent(projectName)}/features/${featureId}`, { |
| 152 | method: 'DELETE', |
| 153 | }) |
| 154 | } |
| 155 | |
| 156 | export async function skipFeature(projectName: string, featureId: number): Promise<void> { |
| 157 | await fetchJSON(`/projects/${encodeURIComponent(projectName)}/features/${featureId}/skip`, { |
nothing calls this directly
no test coverage detected