mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
573 B
TypeScript
11 lines
573 B
TypeScript
--- electron/spec/api-tray-spec.ts.orig 2024-10-09 13:53:06 UTC
|
|
+++ electron/spec/api-tray-spec.ts
|
|
@@ -131,7 +131,7 @@ describe('tray module', () => {
|
|
describe('tray.getBounds()', () => {
|
|
afterEach(() => { tray.destroy(); });
|
|
|
|
- ifit(process.platform !== 'linux')('returns a bounds object', function () {
|
|
+ ifit(process.platform !== 'linux' && process.platform !== 'freebsd')('returns a bounds object', function () {
|
|
const bounds = tray.getBounds();
|
|
expect(bounds).to.be.an('object').and.to.have.all.keys('x', 'y', 'width', 'height');
|
|
});
|