Preview — in progress
Cypress
Install the Cypress plugin and register it in setupNodeEvents to report runs to ReleaseQA.
cypress.config.ts
import { defineConfig } from 'cypress';
import releaseqa from '@releaseqa/reporter-cypress/plugin';
export default defineConfig({
e2e: {
setupNodeEvents(on, config) {
return releaseqa(on, config, {
apiKey: process.env.RELEASEQA_API_KEY,
projectId: 'your-project-id',
});
},
},
});We're writing the long-form guide now
The full walkthrough for Cypress is being written and reviewed. In the meantime, the Quick Start and Configuration pages cover the core setup that this guide builds on.
Need this page filled in sooner? Email support@releaseqa.com and we'll prioritise it.