From bb799fd34a863ab396fd3086120d6e33216e438c Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Fri, 11 Jun 2021 12:47:14 -0500 Subject: [PATCH] Log cached folder path --- helpers/incremental/caching.test.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helpers/incremental/caching.test.js b/helpers/incremental/caching.test.js index d3132a1..32f828d 100644 --- a/helpers/incremental/caching.test.js +++ b/helpers/incremental/caching.test.js @@ -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() })