mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
Changelog: - https://github.com/electron/electron/releases/tag/v22.0.2 - https://github.com/electron/electron/releases/tag/v22.0.3 - https://github.com/electron/electron/releases/tag/v22.1.0 PR: 269194 Reported by: Yonas Yanfa <yonas.yanfa@gmail.com> Approved by: mikael (maintainer)
11 lines
806 B
TypeScript
11 lines
806 B
TypeScript
--- electron/spec/version-bump-spec.ts.orig 2023-01-24 16:58:16 UTC
|
|
+++ electron/spec/version-bump-spec.ts
|
|
@@ -92,7 +92,7 @@ describe('version-bumper', () => {
|
|
|
|
// On macOS Circle CI we don't have a real git environment due to running
|
|
// gclient sync on a linux machine. These tests therefore don't run as expected.
|
|
- ifdescribe(!(process.platform === 'linux' && process.arch.indexOf('arm') === 0) && process.platform !== 'darwin')('nextVersion', () => {
|
|
+ ifdescribe(!((process.platform === 'linux' || process.platform === 'freebsd') && process.arch.indexOf('arm') === 0) && process.platform !== 'darwin')('nextVersion', () => {
|
|
describe('bump versions', () => {
|
|
const nightlyPattern = /[0-9.]*(-nightly.(\d{4})(\d{2})(\d{2}))$/g;
|
|
const betaPattern = /[0-9.]*(-beta[0-9.]*)/g;
|