fix(eslint): resolve @typescript-eslint/no-unused-vars errors

This commit is contained in:
Naoki Oketani
2025-05-07 11:58:37 +00:00
parent 162f0864b5
commit 307d90f9c7
2 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ export const error = vi.fn<typeof core.error>()
export const info = vi.fn<typeof core.info>()
export const getInput = vi
.fn<typeof core.getInput>()
.mockImplementation((name, options) => {
.mockImplementation((name) => {
const key = `INPUT_${name.replace(/ /g, '_').toUpperCase()}`
return process.env[key] || ''
})