Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 505 Bytes

webhooks.md

File metadata and controls

24 lines (17 loc) · 505 Bytes

Webhooks

Sorry-cypress will send a POST HTTP request to a URL with a JSON payload.

// Payload schema
{
  event: "INSTANCE_FINISH" | "INSTANCE_START" | "RUN_START" | "RUN_FINISH";
  runUrl: string;
  failures: number;
  passes: number;
  skipped: number;
  tests: number;
  pending: number;
  wallClockDurationSeconds: number;
}

Use the web dashboard Project Settings to add or edit Generic Webhook Integration