test-drive
Advanced tools
Comparing version 0.0.62 to 0.0.63
{ | ||
"name": "test-drive", | ||
"version": "0.0.62", | ||
"version": "0.0.63", | ||
"description": "Opinionated library for writing web component tests", | ||
@@ -5,0 +5,0 @@ "main": "./dist/src/index.js", |
@@ -160,5 +160,5 @@ # Test Drive | ||
`.inHorizontalSequence(tolerance = 1.0)` | ||
`.inHorizontalSequence({ distance = 0.0, tolerance = 1.0 })` | ||
`.inVerticalSequence(tolerance = 1.0)` | ||
`.inVerticalSequence({ distance = 0.0, tolerance = 1.0 })` | ||
@@ -170,4 +170,4 @@ Asserts that *all elements within a list* form uninterrupted sequence, one adjacent to the other, without gaps. | ||
```javascript | ||
expect([button1, button2, button3]).to.be.inHorizontalSequence(10.0); | ||
expect([button1, button2, button3]).to.be.inHorizontalSequence({ distance: 10.0 }); | ||
``` | ||
3638124