Skip to content

Commit

Permalink
Add documentation to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
emiryy committed Aug 23, 2022
1 parent 0d9702e commit 96cffc5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/storybook-a11y-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,3 +229,12 @@ The number of tabs to open in Chromium. The default option is based off the numb
#### timeout `number` (optional)

The goto timeout for the provided url. Defaults to `3000`

#### waitUntil `PuppeteerLifeCycleEvent` (optional)

When to consider navigation succeeded. Defaults to `load`.

- `load` : consider navigation to be finished when the load event is fired.
- `domcontentloaded` : consider navigation to be finished when the DOMContentLoaded event is fired.
- `networkidle0` : consider navigation to be finished when there are no more than 0 network connections for at least `500` ms.
- `networkidle2` : consider navigation to be finished when there are no more than 2 network connections for at least `500` ms.

0 comments on commit 96cffc5

Please sign in to comment.