Explorar el Código

Remove `it.only` from e2e test (#3690)

Merlijn Vos hace 3 años
padre
commit
f40899bc39
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      e2e/cypress/integration/dashboard-tus.spec.ts

+ 1 - 1
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()