Skip to content

Commit 0a87061

Browse files
committed
fix: placing ts-ignore correctly as before in sliding window unit test
1 parent 4aa5855 commit 0a87061

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/core/sliding-window/__tests__/sliding-window.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,9 @@ describe("Sliding Window", () => {
156156
totalTokens: 0,
157157
}),
158158
).toBe(0)
159-
// @ts-ignore - Testing with undefined
159+
160160
expect(
161+
// @ts-ignore - Testing with undefined
161162
await estimateTokenCount(undefined, mockApiHandler, {
162163
effectiveThreshold: undefined,
163164
maxTokens: null,

0 commit comments

Comments
 (0)