Chris Richard
Chris Richard
I wrote a custom plugin to send test results to datadog. Starts with an `after` hook: ``` after(() => { const findTests = suite => { suite.tests.forEach(test => { cy.task('logTestResults',...
Retries set to 2 I had the same outcome when I forced a test to fail in: - `before()` hook - `beforeEach()` - test body
``` "cypress": "3.4.0", "cypress-plugin-retries": "1.2.2" ```
Ok great. I appreciate you jumping on this for me.