Get Started
Get started with a free parallelization using sorry-cypress
docker run -p 1234:1234 agoldis/sorry-cypress-directorInstall and configure cypress-cloud and cypress
npm install cypress-cloud cypress// currents.config.js
module.exports = {
projectId: "yyy", // the projectId, can be any values for sorry-cypress users
recordKey: "xxx", // the record key, can be any value for sorry-cypress users
cloudServiceUrl: "http://localhost:1234", // Sorry Cypress users - set the director service URL
};// cypress.config.js
const { defineConfig } = require("cypress");
const { cloudPlugin } = require("cypress-cloud/plugin");
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
return cloudPlugin(on, config);
},
},
});Running cypress tests in parallel
Last updated