From 0c14afe1a41fa85d8f092b0ce8017c9e1610e0e4 Mon Sep 17 00:00:00 2001 From: Gary Sassano <10464497+garysassano@users.noreply.github.com> Date: Sun, 15 Sep 2024 23:58:31 +0200 Subject: [PATCH] fix type error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5af33f..f67bc82 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ test("Check the page title of example.com", async (t) => { const browser = await playwright.launch({ args: chromium.args, executablePath: await chromium.executablePath(), - headless: chromium.headless, + headless: true, }); const context = await browser.newContext();