blob: 81f9e711726c2288928ad0d98c6df4b989af6b5e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- electron/spec/spellchecker-spec.ts.orig 2025-12-04 05:13:33 UTC
+++ electron/spec/spellchecker-spec.ts
@@ -89,7 +89,7 @@ ifdescribe(features.isBuiltinSpellCheckerEnabled())('s
});
// Context menu test can not run on Windows or Linux (https://github.com/electron/electron/pull/48657 broke linux).
- const shouldRun = process.platform !== 'win32' && process.platform !== 'linux';
+ const shouldRun = process.platform !== 'win32' && process.platform !== 'linux' && process.platform !== 'freebsd';
ifit(shouldRun)('should detect correctly spelled words as correct', async () => {
await w.webContents.executeJavaScript('document.body.querySelector("textarea").value = "typography"');
|