Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/installation/npmTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ export const test = _test
const npmLines = [
`registry = ${registry.url()}/`,
`cache = ${testInfo.outputPath('npm_cache')}`,
// Required after https://github.com/npm/cli/pull/8185.
'replace-registry-host=never',
];
if (!allowGlobalInstall) {
yarnLines.push(`prefix "${testInfo.outputPath('npm_global')}"`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ test('install command should work', async ({ exec, checkInstalledSoftwareOnDisk

await test.step('playwright install --list', async () => {
const result = await exec('npx playwright install --list');
console.log('result', result);
expect.soft(result).toMatch(/Playwright version: \d+\.\d+/);
expect.soft(result).toMatch(/chromium-\d+/);
expect.soft(result).toMatch(/chromium_headless_shell-\d+/);
Expand Down
Loading