@@ -8,7 +8,7 @@ A GitHub Action for running [Bombadil](https://github.com/antithesishq/bombadil)
88- uses : antithesishq/bombadil-action@v1
99 with :
1010 origin : https://your-app.example.com
11- spec : ./spec/ bombadil.ts
11+ specification : ./bombadil/specification .ts
1212 time-limit : 5m
1313 exit-on-violation : true
1414 output-path : bombadil-output
@@ -33,7 +33,7 @@ Chrome is only installed when `driver: browser`.
3333- uses: antithesishq/bombadil-action@v1
3434 with:
3535 origin: https://your-app.example.com
36- spec : ./spec/ bombadil.ts
36+ specification : ./bombadil/specification .ts
3737 time-limit: 10m
3838 headers: |
3939 Authorization: Bearer ${{ secrets.STAGING_TOKEN }}
@@ -65,9 +65,9 @@ Chrome is only installed when `driver: browser`.
6565| Name | Description | Default |
6666| ---------------------------- | ------------------------------------------------------------------------------------------ | -------- |
6767| `origin` | Starting URL (also the navigation boundary). **Required.** | |
68- | `spec` | Path to a TS/JS specification file. | |
69- | `output-path` | Where to store trace, screenshots, etc. | |
68+ | `specification` | Path to a TS/JS specification file describing the properties to test. | |
7069| `time-limit` | Maximum run time. Accepts `30s`, `5m`, `2h`, `1d`. **Required.** | |
70+ | `output-path` | Where to store trace, screenshots, etc. | |
7171| `exit-on-violation` | Exit on the first failing property. | `false` |
7272| `width` / `height` | Viewport size in pixels. | `1024` / `768` |
7373| `device-scale-factor` | Viewport scaling factor. | `2` |
@@ -204,7 +204,7 @@ Reproduction is a local workflow. When a test fails, bombadil prints both the `b
204204
2052053. Use `bombadil inspect ./bombadil-output` to step through what happened.
206206
207- For reproductions to succeed, run with the same options as the original (viewport, spec file, etc.).
207+ For reproductions to succeed, run with the same options as the original (viewport, specification file, etc.).
208208
209209# # Development
210210
0 commit comments