Skip to content

Commit 6201a1b

Browse files
committed
chore: remove logging
1 parent 43dc28d commit 6201a1b

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

test/index.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1279,14 +1279,8 @@ describe('function helpers', () => {
12791279
await moveNextDist()
12801280
await nextRuntime.onBuild(defaultArgs)
12811281
const dependencies = await getAllPageDependencies(constants.PUBLISH_DIR)
1282-
const filesExist = await Promise.all(
1283-
dependencies.map(async (dep) => {
1284-
const exists = await pathExists(dep)
1285-
return [dep, exists]
1286-
}),
1287-
)
1288-
console.log(filesExist)
1289-
expect(filesExist.every(([dep, exists]) => exists)).toBeTruthy()
1282+
const filesExist = await Promise.all(dependencies.map((dep) => pathExists(dep)))
1283+
expect(filesExist.every((exists) => exists)).toBeTruthy()
12901284
})
12911285
})
12921286

0 commit comments

Comments
 (0)