signal-desktop/test/spellcheck_test.js
2018-04-30 16:53:34 -04:00

6 lines
193 B
JavaScript

describe('spellChecker', function() {
it('should work', function() {
assert(window.spellChecker.spellCheck('correct'));
assert(!window.spellChecker.spellCheck('fhqwgads'));
});
});