diff --git a/cypress/integration/basic/admin.spec.ts b/cypress/integration/basic/admin.spec.ts index 816ca2daba..7394684227 100644 --- a/cypress/integration/basic/admin.spec.ts +++ b/cypress/integration/basic/admin.spec.ts @@ -9,6 +9,9 @@ if (Cypress.env("FLEET_TIER") === "basic") { cy.addDockerHost(); cy.logout(); }); + afterEach(() => { + cy.stopDockerHost(); + }); it("Can perform the appropriate basic-tier admin actions", () => { cy.login("anna@organization.com", "user123#"); diff --git a/cypress/integration/basic/team_maintainer_observer.spec.ts b/cypress/integration/basic/team_maintainer_observer.spec.ts index 7e22a87fe4..655b1f272a 100644 --- a/cypress/integration/basic/team_maintainer_observer.spec.ts +++ b/cypress/integration/basic/team_maintainer_observer.spec.ts @@ -8,6 +8,9 @@ if (Cypress.env("FLEET_TIER") === "basic") { cy.addDockerHost(); cy.logout(); }); + afterEach(() => { + cy.stopDockerHost(); + }); it("Can perform the appropriate team observer actions", () => { cy.login("marco@organization.com", "user123#"); diff --git a/cypress/integration/core/admin.spec.ts b/cypress/integration/core/admin.spec.ts index 288169d0fd..6e17f0ec6a 100644 --- a/cypress/integration/core/admin.spec.ts +++ b/cypress/integration/core/admin.spec.ts @@ -9,6 +9,9 @@ if (Cypress.env("FLEET_TIER") === "core") { cy.addDockerHost(); cy.logout(); }); + afterEach(() => { + cy.stopDockerHost(); + }); it("Can perform the appropriate core-tier admin actions", () => { cy.login("anna@organization.com", "user123#");