From bf58e1195efbaa95dbbe2b782b9b761bbed79bb2 Mon Sep 17 00:00:00 2001 From: "Joshua A. Horton" Date: Wed, 15 May 2024 14:35:57 +0700 Subject: [PATCH] chore(web): mild lm-layer wtr config cleanup --- .../unit_tests/in_browser/web-test-runner.config.mjs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/common/predictive-text/unit_tests/in_browser/web-test-runner.config.mjs b/common/predictive-text/unit_tests/in_browser/web-test-runner.config.mjs index e21c483912..523cd25457 100644 --- a/common/predictive-text/unit_tests/in_browser/web-test-runner.config.mjs +++ b/common/predictive-text/unit_tests/in_browser/web-test-runner.config.mjs @@ -12,14 +12,9 @@ const KEYMAN_ROOT = resolve(dir, '../../../../'); /** @type {import('@web/test-runner').TestRunnerConfig} */ export default { browsers: [ - // These are the same type - and probably the same _instances_ - as are visible within the reporter! - // Probably a helpful fact to resolve name disambiguation. playwrightLauncher({ product: 'chromium' }), playwrightLauncher({ product: 'webkit', concurrency: 1 }), - playwrightLauncher({ product: 'firefox' }), - // playwrightLauncher({ product: 'webkit', concurrency: 1, createBrowserContext({browser}) { - // return browser.newContext({...devices['iPhone X'] }); // to resolve: name disambiguation. - // }}) + playwrightLauncher({ product: 'firefox' }) ], concurrency: 10, nodeResolve: true,