Skip to content

Commit f2fbb06

Browse files
authored
Update utils.test.js
1 parent 104be29 commit f2fbb06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/utils.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,9 @@ test('Vertex Angles counterclockwise', () => {
111111

112112
describe.each([
113113
[[-1, -1], false, 'Outside'],
114-
[[1, 1], true, 'Border'],
114+
[[1, 1], true, 'Share Node'],
115115
[[.5, .5], true, 'Inside'],
116+
[[0, 0], true, 'Border'],
116117
])('Surrounds', (point, expected, description) => {
117118
test(`${description}`, () => {
118119
expect(BuildingShapeUtils.surrounds(rightTriangle, point)).toBe(expected);

0 commit comments

Comments
 (0)