mirror of https://github.com/actions/toolkit
Fix failing resolvePaths testcase
parent
da6701aea9
commit
67cb82d99b
|
@ -1,5 +1,6 @@
|
||||||
import {promises as fs} from 'fs'
|
import {promises as fs} from 'fs'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
|
import { coerce } from 'semver'
|
||||||
import * as cacheUtils from '../src/internal/cacheUtils'
|
import * as cacheUtils from '../src/internal/cacheUtils'
|
||||||
|
|
||||||
test('getArchiveFileSizeInBytes returns file size', () => {
|
test('getArchiveFileSizeInBytes returns file size', () => {
|
||||||
|
@ -34,6 +35,6 @@ test('assertDefined returns value', () => {
|
||||||
})
|
})
|
||||||
|
|
||||||
test('resolvePaths works on current directory', async () => {
|
test('resolvePaths works on current directory', async () => {
|
||||||
const resolvedPath = await cacheUtils.resolvePaths(['.'])
|
const paths = await cacheUtils.resolvePaths(['.'])
|
||||||
expect(resolvedPath).toStrictEqual(['.'])
|
expect(paths).toContain('.')
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue