signal-desktop/test/spellcheck_test.js

7 lines
183 B
JavaScript
Raw Normal View History

2018-11-02 18:02:53 +00:00
describe('spellChecker', () => {
it('should work', () => {
assert(window.spellChecker.spellCheck('correct'));
assert(!window.spellChecker.spellCheck('fhqwgads'));
});
});