diff --git a/cypress/integration/history.spec.ts b/cypress/integration/history.spec.ts index 2f4d7054e..f5bce9acd 100644 --- a/cypress/integration/history.spec.ts +++ b/cypress/integration/history.spec.ts @@ -18,6 +18,15 @@ describe('History', () => { }) describe('Pinning', () => { + beforeEach(() => { + cy.route({ + method: 'PUT', + url: '/api/v2/history/**', + status: 401, + response: {} + }) + }) + it('Cards', () => { cy.get('div.card') .should('be.visible')