@rettangoli/vt 1.0.0-rc2 → 1.0.0-rc3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -125,17 +125,22 @@ Screenshot naming:
|
|
|
125
125
|
A pre-built Docker image with `rtgl` and Playwright browsers is available:
|
|
126
126
|
|
|
127
127
|
```bash
|
|
128
|
-
docker pull han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-
|
|
128
|
+
docker pull han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
Run commands against a local project:
|
|
132
132
|
|
|
133
133
|
```bash
|
|
134
|
-
docker run --rm -v "$(pwd):/workspace"
|
|
135
|
-
docker run --rm -v "$(pwd):/workspace"
|
|
136
|
-
docker run --rm -v "$(pwd):/workspace"
|
|
134
|
+
docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt generate
|
|
135
|
+
docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt report
|
|
136
|
+
docker run --rm -v "$(pwd):/workspace" han4wluc/rtgl:playwright-v1.57.0-rtgl-v1.0.0-rc4 rtgl vt accept
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
+
Note:
|
|
140
|
+
|
|
141
|
+
- Image default working directory is `/workspace`.
|
|
142
|
+
- Use `-w /workspace/<subdir>` only when running commands from a subfolder within the mounted project.
|
|
143
|
+
|
|
139
144
|
Supports `linux/amd64` and `linux/arm64`.
|
|
140
145
|
|
|
141
146
|
## Development
|