Skip to content

Commit ee60a93

Browse files
authored
Update utils.test.js
1 parent c656eef commit ee60a93

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
@@ -112,7 +112,8 @@ test('Vertex Angles counterclockwise', () => {
112112
describe('Surrounds', () => {
113113
test.each([
114114
[[-1, -1], false, 'Outside'],
115-
[[1, 1], true, 'Inside'],
115+
[[1, 1], true, 'Border'],
116+
[[.5, .5], true, 'Inside'],
116117
])('${description}', (point, expected, description) => {
117118
expect(BuildingShapeUtils.surrounds(rightTriangle, point)).toBe(expected);
118119
});

0 commit comments

Comments
 (0)