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.
21 lines
554 B
Markdown
21 lines
554 B
Markdown
# 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:
|
|
|
|
```bash
|
|
./run_all_tests.sh
|
|
```
|
|
|
|
To install local builds of `playwright` packages in tests, do `npm_i playwright`.
|