We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 523d4c5 commit 7cee796Copy full SHA for 7cee796
tests/versions.test.ts
@@ -19,7 +19,7 @@ jest.setTimeout(500_000);
19
20
const arch = process.arch === 'x64' || (process.platform === 'win32' && process.arch === 'arm64') ? 'x64' : 'arm64';
21
22
-for (const version of ['5.7.44', '8.0.0', '8.0.1']) {
+for (const version of DOWNLOADABLE_MYSQL_VERSIONS.filter(v => satisfies(v, '>=5.7.20 <=5.7.44'))) {
23
try {
24
getBinaryURL(version, arch)
25
} catch (e) {
0 commit comments