We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea043af commit 9e073dbCopy full SHA for 9e073db
tests/versions.test.ts
@@ -13,9 +13,10 @@ jest.setTimeout(500_000); //5 minutes
13
14
const arch = process.arch === 'x64' || (process.platform === 'win32' && process.arch === 'arm64') ? 'x64' : 'arm64';
15
16
-console.log('Platform:')
17
-console.log('Platform:', process.platform)
18
-console.log('etcOSRelease:', etcOSRelease)
+import('console').then(console => {
+ console.log('Platform:', process.platform)
+ console.log('etcOSRelease:', etcOSRelease)
19
+})
20
21
for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, process.env.VERSION_REQUIREMENT || '>0.0.0'))) {
22
try {
0 commit comments