Skip to content

Commit e1f3add

Browse files
committed
Temporarily silence @typescript-eslint/no-unused-vars error
1 parent c936c81 commit e1f3add

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

server/src/server.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,13 +734,15 @@ describe("Helper Functions", () => {
734734
});
735735

736736
it("should correctly identify built-in functions", () => {
737+
/* eslint-disable @typescript-eslint/no-unused-vars */
737738
const builtIns = [
738739
"list/map",
739740
"list/filter",
740741
"maybe/default",
741742
"result/bind",
742743
];
743744
const nonBuiltIns = ["custom/function", "user/defined", "random/name"];
745+
/* eslint-enable @typescript-eslint/no-unused-vars */
744746

745747
// This test would require access to the isBuiltInFunction helper
746748
// In a real implementation, you'd export it or test it indirectly

0 commit comments

Comments
 (0)