We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7780635 commit 9beab9cCopy full SHA for 9beab9c
bin/accessibility-automation/cypress/index.js
@@ -317,6 +317,11 @@ commandToOverwrite.forEach((command) => {
317
});
318
319
afterEach(() => {
320
+ try {
321
+ throw new Error("Deliberate error for debugging purposes");
322
+ } catch (err) {
323
+ browserStackLog("Deliberate error caught:", err.stack);
324
+ }
325
const attributes = Cypress.mocha.getRunner().suite.ctx.currentTest;
326
cy.window().then(async (win) => {
327
let shouldScanTestForAccessibility = shouldScanForAccessibility(attributes);
0 commit comments