We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4dbc4cb commit 6c1a502Copy full SHA for 6c1a502
test/utils.test.js
@@ -80,7 +80,7 @@ describe('isSelfIntersecting', () => {
80
test.each([
81
['<way id="1"><nd ref="1"/><nd ref="2"/></way>', false, 'open non-intersecting'],
82
['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="1"/></way>', false, 'closed non-intersecting'],
83
- ['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="2"/></way>', true', 'open intersecting'],
+ ['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="2"/></way>', true, 'open intersecting'],
84
['<way id="1"><nd ref="1"/><nd ref="2"/><nd ref="3"/><nd ref="4"/><nd ref="3"/><nd ref="1"/></way>', true, 'closed intersecting']
85
])(${description}, (way, expected, description) => {
86
let parser = new window.DOMParser();
0 commit comments