From 10d35b10e0b7c584f89834b2b0e3b5a746665631 Mon Sep 17 00:00:00 2001 From: Ejaaz Khan Date: Tue, 2 Dec 2025 15:25:50 +0530 Subject: [PATCH] test: add after each method --- cypress/integration/awesome_bar.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cypress/integration/awesome_bar.js b/cypress/integration/awesome_bar.js index 80d3d585fb..471e9e4dfa 100644 --- a/cypress/integration/awesome_bar.js +++ b/cypress/integration/awesome_bar.js @@ -19,6 +19,11 @@ context("Awesome Bar", () => { cy.wait(400); }); + afterEach(() => { + cy.get("body").type("{esc}"); + cy.wait(400); + }); + after(() => { cy.visit("/desk/todo"); // Make sure we're not bleeding any filters to the next spec. cy.clear_filters();