Log cached folder path

This commit is contained in:
Sam Carlton 2021-06-11 12:47:14 -05:00
parent 6938313141
commit bb799fd34a

View file

@ -4,7 +4,8 @@ import { isObject, isString } from '../type-checks.js'
import {
getNetlifyConfig,
hasCachedPublishFolder,
cachePublishFolder
cachePublishFolder,
CACHE_PATH
} from './caching.js'
@ -43,6 +44,6 @@ test('Can cache publish folder', async (t) => {
return
}
t.log('Publish folder has been cached already')
t.log(`Cached publish folder at ${ CACHE_PATH }`)
t.pass()
})