From c67c43b4ddfbe4d37722a02595aee71b754784cd Mon Sep 17 00:00:00 2001 From: Mathias Jakobsen Date: Mon, 23 Oct 2023 11:25:12 +0100 Subject: [PATCH] [web] Enable ProjectListRoot tests (#15330) * [web] Enable ProjectListRoot tests * [web] Set timeout of ProjectListRoot tests to 10s GitOrigin-RevId: ca106d48738bfd3349990691d5c41c8de96880ed --- .../project-list/components/project-list-root.test.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/services/web/test/frontend/features/project-list/components/project-list-root.test.tsx b/services/web/test/frontend/features/project-list/components/project-list-root.test.tsx index 41323a9f24..bd4d11265a 100644 --- a/services/web/test/frontend/features/project-list/components/project-list-root.test.tsx +++ b/services/web/test/frontend/features/project-list/components/project-list-root.test.tsx @@ -24,8 +24,9 @@ const { const userId = owner.id -// eslint-disable-next-line mocha/no-skipped-tests -describe.skip('', function () { +describe('', function () { + this.timeout('10s') + let sendMBSpy: sinon.SinonSpy let assignStub: sinon.SinonStub @@ -189,8 +190,7 @@ describe.skip('', function () { ) }) - // eslint-disable-next-line mocha/no-skipped-tests - it.skip('only checks the projects that are viewable when there is a load more button', async function () { + it('only checks the projects that are viewable when there is a load more button', async function () { // first one is the select all checkbox fireEvent.click(allCheckboxes[0])