1
0
Fork 0

Merge branch 'pdotl-empty-cache-bugfix' of https://github.com/actions/toolkit into pdotl-empty-cache-bugfix

pull/1132/head
Lovepreet Singh 2022-07-14 08:12:45 +00:00 committed by GitHub
commit 2a37ee752b
1 changed files with 1 additions and 1 deletions

View File

@ -36,5 +36,5 @@ test('assertDefined returns value', () => {
test('resolvePaths works on current directory', async () => { test('resolvePaths works on current directory', async () => {
const paths = await cacheUtils.resolvePaths(['.']) const paths = await cacheUtils.resolvePaths(['.'])
expect(paths).toContain('.') expect(paths.length).toBe(1)
}) })