We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 425d77f commit a23d65aCopy full SHA for a23d65a
packages/cli/src/commands/test.ts
@@ -180,7 +180,7 @@ async function getPlatform(
180
const type = os.type();
181
const arch = os.arch();
182
const cpuCore = os.cpus()[0];
183
- const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|M3|processor)/.test(cpuCore.model);
+ const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|M3|M4|processor)/.test(cpuCore.model);
184
const linuxInfo = type === 'Linux' ? await getLinuxInfo.bind(this)() : {};
185
const linuxDistro = linuxInfo.name;
186
const release = linuxInfo.version || os.release();
0 commit comments