Skip to content

Commit 9e073db

Browse files
update log
1 parent ea043af commit 9e073db

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/versions.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ jest.setTimeout(500_000); //5 minutes
1313

1414
const arch = process.arch === 'x64' || (process.platform === 'win32' && process.arch === 'arm64') ? 'x64' : 'arm64';
1515

16-
console.log('Platform:')
17-
console.log('Platform:', process.platform)
18-
console.log('etcOSRelease:', etcOSRelease)
16+
import('console').then(console => {
17+
console.log('Platform:', process.platform)
18+
console.log('etcOSRelease:', etcOSRelease)
19+
})
1920

2021
for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, process.env.VERSION_REQUIREMENT || '>0.0.0'))) {
2122
try {

0 commit comments

Comments
 (0)