From 67be8432145b3f7790bf4283666a60157afae02e Mon Sep 17 00:00:00 2001 From: mutoe Date: Mon, 11 Dec 2023 22:35:56 +0800 Subject: [PATCH] test: remove only mark for tests --- cypress/e2e/follow.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/follow.cy.ts b/cypress/e2e/follow.cy.ts index 61d16a0..dd04c1c 100644 --- a/cypress/e2e/follow.cy.ts +++ b/cypress/e2e/follow.cy.ts @@ -1,6 +1,6 @@ import { ROUTES } from './constant' -describe.only('follow', () => { +describe('follow', () => { beforeEach(() => { cy.intercept('GET', /articles\?/, { fixture: 'articles.json' }).as('getArticles') cy.intercept('GET', /tags/, { fixture: 'tags.json' }).as('getTags')