mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 13:50:38 -04:00
Finally, after a long wait, an electron port for FreeBSD lands in the portstree. A huge thanks to everyone contributed to this huge effort and to the maintainer that is willing to take the burden of the maintainership!
29 lines
1.1 KiB
JavaScript
29 lines
1.1 KiB
JavaScript
--- electron/spec/api-net-log-spec.js.orig 2019-05-14 02:57:56 UTC
|
|
+++ electron/spec/api-net-log-spec.js
|
|
@@ -95,7 +95,7 @@ describe('netLog module', () => {
|
|
})
|
|
|
|
it('should begin and end logging automatically when --log-net-log is passed', done => {
|
|
- if (isCI && process.platform === 'linux') {
|
|
+ if (isCI && (process.platform === 'linux' || process.platform === 'freebsd')) {
|
|
done()
|
|
return
|
|
}
|
|
@@ -116,7 +116,7 @@ describe('netLog module', () => {
|
|
|
|
// FIXME(deepak1556): Ch69 follow up.
|
|
xit('should begin and end logging automtically when --log-net-log is passed, and behave correctly when .startLogging() and .stopLogging() is called', done => {
|
|
- if (isCI && process.platform === 'linux') {
|
|
+ if (isCI && (process.platform === 'linux' || process.platform === 'freebsd')) {
|
|
done()
|
|
return
|
|
}
|
|
@@ -139,7 +139,7 @@ describe('netLog module', () => {
|
|
})
|
|
|
|
it('should end logging automatically when only .startLogging() is called', done => {
|
|
- if (isCI && process.platform === 'linux') {
|
|
+ if (isCI && (process.platform === 'linux' || process.platform === 'freebsd')) {
|
|
done()
|
|
return
|
|
}
|