From 1bf8c80bdae02cf3f2e37ceebd6530af9f2465b4 Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Mon, 11 Oct 2021 13:27:56 -0400 Subject: [PATCH] test(downloads): enable test for downloads in a persistent context (#9379) --- tests/defaultbrowsercontext-1.spec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/defaultbrowsercontext-1.spec.ts b/tests/defaultbrowsercontext-1.spec.ts index e5402efb04..c3fc231d5c 100644 --- a/tests/defaultbrowsercontext-1.spec.ts +++ b/tests/defaultbrowsercontext-1.spec.ts @@ -172,8 +172,6 @@ it('should support offline option', async ({ server, launchPersistent }) => { }); it('should support acceptDownloads option', async ({ server, launchPersistent }) => { - it.skip(true, 'Unskip once we support downloads in persistent context.'); - const { page } = await launchPersistent({ acceptDownloads: true }); server.setRoute('/download', (req, res) => { res.setHeader('Content-Type', 'application/octet-stream');