Skip to main content

Delete Tests

The follwing mutation deletes a test:

Operation: mutation DeleteTest($testId: ObjectID!) { deleteTest(input: { testId: $testId }) { test { id } } }
DeleteTestTry in Explorer
GraphQL
mutation DeleteTest($testId: ObjectID!) {
deleteTest(input: {
testId: $testId
}) {
test {
id
}
}
}
caution

Removing a test from a test suite won't affect any previously completed builds and test results.