From f40899bc39141aad979b10041295f92f0eb095b4 Mon Sep 17 00:00:00 2001 From: Merlijn Vos Date: Mon, 9 May 2022 10:56:38 +0200 Subject: [PATCH] Remove `it.only` from e2e test (#3690) --- e2e/cypress/integration/dashboard-tus.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/cypress/integration/dashboard-tus.spec.ts b/e2e/cypress/integration/dashboard-tus.spec.ts index 6b561aaed2..50f227c0bb 100644 --- a/e2e/cypress/integration/dashboard-tus.spec.ts +++ b/e2e/cypress/integration/dashboard-tus.spec.ts @@ -16,7 +16,7 @@ describe('Dashboard with Tus', () => { cy.intercept('http://localhost:3020/search/unsplash/*').as('unsplash') }) - it.only('should emit `error` and `upload-error` events on failed POST request', () => { + it('should emit `error` and `upload-error` events on failed POST request', () => { cy.get('@file-input').attachFile(['images/traffic.jpg']) const error = cy.spy()