Skip to content

Commit 3365791

Browse files
committed
fixup
1 parent 463d87a commit 3365791

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/unit/node/util.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ describe("getEnvPaths", () => {
66
const expectedProperties = ["data", "config", "runtime"]
77
expectedProperties.forEach((property) => {
88
// This is a funky way to do it rather than calling hasOwnProperty itself
9-
// We do this because of this eslint rule: https://eslint.org/docs/rules/no-prototype-builtins
9+
// We do this because of this eslint rule
10+
// Link: https://eslint.org/docs/rules/no-prototype-builtins
1011
const hasProperty = Object.prototype.hasOwnProperty.call(actualPaths, property)
1112
expect(hasProperty).toBe(true)
1213
})

0 commit comments

Comments
 (0)