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 6d4998d commit 5af8145Copy full SHA for 5af8145
src/commands/test.js
@@ -65,16 +65,16 @@ function getPlatform() {
65
66
if (arch === 'x64' || (arch === 'arm64' && isM1)) {
67
if (type === 'Darwin') {
68
- if (majorVersion === '19') {
+ if (majorVersion === 19) {
69
return 'binary-macos-10.15';
70
- } else if (majorVersion === '18') {
+ } else if (majorVersion === 18) {
71
return 'binary-macos-10.14';
72
} else if (isM1) {
73
return 'binary-macos-11-m1';
74
}
75
return 'binary-macos-11';
76
} else if (type === 'Linux') {
77
- if (majorVersion === '18') {
+ if (majorVersion === 18) {
78
return 'binary-linux-18';
79
80
return 'binary-linux-20';
0 commit comments