Use Signal's spellcheck dictionary files
This commit is contained in:
parent
fa9c523d39
commit
3fa911598b
6 changed files with 73 additions and 9 deletions
14
ts/test-node/util/createBrowserWindow_test.ts
Normal file
14
ts/test-node/util/createBrowserWindow_test.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { assert } from 'chai';
|
||||
import { BrowserWindow } from 'electron';
|
||||
|
||||
import { createBrowserWindow } from '../../util/createBrowserWindow';
|
||||
|
||||
describe('createBrowserWindow', () => {
|
||||
it('returns a BrowserWindow', () => {
|
||||
const result = createBrowserWindow({ show: false });
|
||||
assert.instanceOf(result, BrowserWindow);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue