playwrightInstallCommands top-level constant
Playwright installation commands by package manager.
Implementation
const Map<String, String> playwrightInstallCommands = {
'npm': 'npm install -D @playwright/test && npx playwright install',
'yarn': 'yarn add -D @playwright/test && yarn playwright install',
'pnpm': 'pnpm add -D @playwright/test && pnpm exec playwright install',
'bun': 'bun add -D @playwright/test && bun playwright install',
};