mirror of https://github.com/actions/toolkit
Fix lint issue
parent
7bd5862a4d
commit
0025442e24
|
@ -289,7 +289,7 @@ describe('@actions/tool-cache-manifest', () => {
|
||||||
BUG_REPORT_URL="https://bugs.debian.org/"`
|
BUG_REPORT_URL="https://bugs.debian.org/"`
|
||||||
})
|
})
|
||||||
|
|
||||||
const debugOutput: Array<string> = []
|
const debugOutput: string[] = []
|
||||||
const coreSpy = jest.spyOn(core, 'debug')
|
const coreSpy = jest.spyOn(core, 'debug')
|
||||||
// it will be cleared in afterEach
|
// it will be cleared in afterEach
|
||||||
coreSpy.mockImplementation(message => debugOutput.push(message))
|
coreSpy.mockImplementation(message => debugOutput.push(message))
|
||||||
|
|
Loading…
Reference in New Issue