The #1 unified test management tool. All your manual, exploratory & automated tests in one powerful platform. Full integration with Jira, GitHub, GitLab & more.
Go to siteThe Testmo API enables automation and integration of your testing workflows into the broader CI/CD pipeline. With Pipedream, you can use this API to trigger tests, update test cases, log results, and sync status with other project management tools. By creating custom serverless workflows on Pipedream, you can connect Testmo to various apps, manage test lifecycles, and respond to events from other services in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
testmo: {
type: "app",
app: "testmo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.testmo.$auth.sitename}.testmo.net/api/v1/user`,
headers: {
Authorization: `Bearer ${this.testmo.$auth.api_key}`,
},
})
},
})
Trigger Test Runs After Code Commits: When a new commit is pushed to a repository in GitHub, use a Pipedream workflow to automatically trigger a series of test cases in Testmo. This ensures that new code is tested immediately, keeping your deployment pipeline efficient.
Sync Test Results with Project Management Tools: After tests are completed in Testmo, send the results to a project management tool like Jira or Asana. Use a Pipedream workflow to create or update issues based on the test outcomes, keeping your team in sync with the latest testing status.
Aggregate Test Reports for Analytics: Collect test results from Testmo and send them to a data visualization tool like Google Sheets or Data Studio. With a Pipedream workflow, you can create custom dashboards or reports that provide insights into your testing process and help identify areas for improvement.
Appends test artifacts, fields or links to an existing automation run. See the documentation
Appends test artifacts, fields or test results to an existing thread in an automation run. See the documentation
Creates a new automation run in a target project in preparation for adding threads and test results. See the documentation
List all automation runs for a project. See the documentation
Testmo uses API keys for authentication. When you connect your Testmo account, Pipedream securely stores the keys so you can easily authenticate to Testmo APIs in both code and no-code steps.
To retrieve your API Key,