mirror of https://github.com/actions/toolkit
Fix testcase for resolvePaths works on current directory
parent
120202a68c
commit
593bc7061c
|
@ -35,5 +35,5 @@ test('assertDefined returns value', () => {
|
||||||
|
|
||||||
test('resolvePaths works on current directory', async () => {
|
test('resolvePaths works on current directory', async () => {
|
||||||
const resolvedPath = await cacheUtils.resolvePaths(['.'])
|
const resolvedPath = await cacheUtils.resolvePaths(['.'])
|
||||||
expect(resolvedPath).toBe(['.'])
|
expect(resolvedPath).toStrictEqual(['.'])
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue