@mands/nx-playwright
Advanced tools
Comparing version 0.0.17 to 0.0.18
{ | ||
"name": "@mands/nx-playwright", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "publishConfig": { |
@@ -31,1 +31,19 @@ # @mands/nx-playwright | ||
a stash pop at the end of the run. | ||
### Example script for testing locally from scratch | ||
```bash | ||
git clone git@github.com:marksandspencer/nx-plugins.git | ||
# Create a test workspace and app, and remove the e2e app | ||
yarn create nx-workspace --name=test-nx --appName=test-app --style=@emotion/styled --preset=next --nxCloud=false --interactive=false | ||
pushd test-nx | ||
yarn nx generate remove test-app-e2e | ||
git commit -am "Remove test-app-e2e" | ||
popd | ||
# Run the test script | ||
pushd nx-plugins | ||
./local-test.sh -w ../test-nx -a test-app -C | ||
popd | ||
``` |
31013
49