mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -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
520 B
TypeScript
11 lines
520 B
TypeScript
--- electron/spec/api-native-image-spec.ts.orig 2023-01-24 16:58:16 UTC
|
|
+++ electron/spec/api-native-image-spec.ts
|
|
@@ -423,7 +423,7 @@ describe('nativeImage module', () => {
|
|
});
|
|
});
|
|
|
|
- ifdescribe(process.platform !== 'linux')('createThumbnailFromPath(path, size)', () => {
|
|
+ ifdescribe(process.platform !== 'linux' && process.platform !== 'freebsd')('createThumbnailFromPath(path, size)', () => {
|
|
it('throws when invalid size is passed', async () => {
|
|
const badSize = { width: -1, height: -1 };
|
|
|