mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-28 09:23:42 +03:00
e9ca11d91b
This patch introduces `npm_i` command to install locally-built versions of Playwright packages instead of fetching them from the registry. With this patch: ```bash npm i ${PLAYWRIGHT_CORE_TGZ}` # never needed anymore npm_i playwright-core # the right way to install local package ``` Note that you can pass any NPM arguments to `npm_i` and cannot use it to install non-playwright packages. |
||
---|---|---|
.. | ||
bin | ||
fixture-scripts | ||
.gitignore | ||
initialize_test.sh | ||
README.md | ||
run_all_tests.sh | ||
test_android_types.sh | ||
test_connect_to_selenium.sh | ||
test_electron_types.sh | ||
test_npm_i_installs_local_package.sh | ||
test_playwright_chromium_should_work.sh | ||
test_playwright_cli_codegen_should_work.sh | ||
test_playwright_cli_install_should_work.sh | ||
test_playwright_cli_screenshot_should_work.sh | ||
test_playwright_driver_should_work.sh | ||
test_playwright_electron_should_work.sh | ||
test_playwright_firefox_should_work.sh | ||
test_playwright_global_installation_cross_package.sh | ||
test_playwright_global_installation_subsequent_installs.sh | ||
test_playwright_global_installation.sh | ||
test_playwright_should_work_with_relative_browsers_path.sh | ||
test_playwright_should_work_with_relative_home_path.sh | ||
test_playwright_should_work.sh | ||
test_playwright_test_should_work.sh | ||
test_playwright_test_stacks_should_work.sh | ||
test_playwright_validate_dependencies_skip_executable_path.sh | ||
test_playwright_validate_dependencies.sh | ||
test_playwright_webkit_should_work.sh | ||
test_screencast.sh | ||
test_skip_browser_download_inspect_with_custom_executable.sh | ||
test_skip_browser_download.sh | ||
test_typescript_types.sh |
Installation Tests
These tests check end-to-end installation and operation of Playwright.
Each test is set with a separate folder that contains all scripts from
fixture-scripts
folder and dummy package.json.
To create a new test, create a new file that starts with test_*.sh
with the following header:
bash #!/bin/bash source ./initialize_test.sh && initialize_test "$@" # initialize test
To run all tests:
./run_all_tests.sh
To install local builds of playwright
packages in tests, do npm_i playwright
.