1
0
Fork 0

Fix testcase for resolvePaths works on current directory

pull/1132/head
Lovepreet Singh 2022-07-13 11:55:36 +00:00 committed by GitHub
parent 120202a68c
commit 593bc7061c
1 changed files with 1 additions and 1 deletions

View File

@ -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(['.'])
}) })