( organization: OrgForPath, project: ProjectForPath, environmentSlug?: string )
| 341 | } |
| 342 | |
| 343 | export function v3TestPath( |
| 344 | organization: OrgForPath, |
| 345 | project: ProjectForPath, |
| 346 | environmentSlug?: string |
| 347 | ) { |
| 348 | return `${v3ProjectPath(organization, project)}/test${ |
| 349 | environmentSlug ? `?environment=${environmentSlug}` : "" |
| 350 | }`; |
| 351 | } |
| 352 | |
| 353 | export function v3TestTaskPath( |
| 354 | organization: OrgForPath, |
no test coverage detected
searching dependent graphs…