We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dfa643 commit c521710Copy full SHA for c521710
src/client/auth.test.ts
@@ -48,7 +48,7 @@ describe("OAuth Authorization", () => {
48
let callCount = 0;
49
50
// Mock implementation that changes behavior based on call count
51
- mockFetch.mockImplementation((url, options) => {
+ mockFetch.mockImplementation((_url, _options) => {
52
callCount++;
53
54
if (callCount === 1) {
@@ -81,7 +81,7 @@ describe("OAuth Authorization", () => {
81
82
83
84
85
86
87
0 commit comments