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 f3a87cf commit e6c7074Copy full SHA for e6c7074
tests/versions.test.ts
@@ -12,7 +12,10 @@ jest.setTimeout(500_000); //5 minutes
12
13
const arch = process.arch === 'x64' || (process.platform === 'win32' && process.arch === 'arm64') ? 'x64' : 'arm64';
14
15
-for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, process.env.VERSION_REQUIREMENT || '>0.0.0'))) {
+const versionRequirement = process.env.VERSION_REQUIREMENT || '>0.0.0'
16
+console.log('Running versions test with versionRequirement:', versionRequirement)
17
+
18
+for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, versionRequirement))) {
19
try {
20
getBinaryURL(version, arch)
21
} catch (e) {
0 commit comments