/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import path from 'path'; import { test, expect } from './npmTest'; import fs from 'fs'; test('installs local packages', async ({ registry, exec, tmpWorkspace }) => { const packages = ['playwright', 'playwright-core', 'playwright-chromium', 'playwright-firefox', 'playwright-webkit', '@playwright/test']; await exec('npm i --foreground-scripts', ...packages, { env: { PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: '1' } }); const output = await exec('node', path.join(__dirname, '..', '..', 'utils', 'workspace.js'), '--get-version'); const expectedPlaywrightVersion = output.trim(); for (const pkg of packages) { await test.step(`check version and installation location of ${pkg}`, async () => { registry.assertLocalPackage(pkg); const result = await exec('node', '--eval', '"console.log(JSON.stringify(require.resolve(process.argv[1])))"', pkg); const pkgJsonPath = fs.realpathSync(path.join(path.dirname(JSON.parse(result)), 'package.json')); expect(pkgJsonPath.startsWith(fs.realpathSync(path.join(tmpWorkspace, 'node_modules')))).toBeTruthy(); const installedVersion = JSON.parse(await fs.promises.readFile(pkgJsonPath, 'utf8')).version; expect(installedVersion).toBe(expectedPlaywrightVersion); }); } });