Cypress slack plugin to send messages from within a test
npm install cypress-slack --save-dev
Once downloaded, add the following line to cypress/support/index.js
to import the commands into your Cypress project:
require('cypress-slack');
cy.slack({
slackId: '{SlackIncomingWebhookId}',
message: 'This is a test',
});