orionsoft-react-scripts
Version:
Orionsoft Configuration and scripts for Create React App.
50 lines (39 loc) • 1.51 kB
JavaScript
/* eslint-env mocha */
import assert from 'assert';
import getSuggestion from '../../../src/util/getSuggestion';
describe('spell check suggestion API', () => {
it('should return no suggestions given empty word and no dictionary', () => {
const word = '';
const expected = [];
const actual = getSuggestion(word);
assert.deepEqual(expected, actual);
});
it('should return no suggestions given real word and no dictionary', () => {
const word = 'foo';
const expected = [];
const actual = getSuggestion(word);
assert.deepEqual(expected, actual);
});
it('should return correct suggestion given real word and a dictionary', () => {
const word = 'fo';
const dictionary = ['foo', 'bar', 'baz'];
const expected = ['foo'];
const actual = getSuggestion(word, dictionary);
assert.deepEqual(expected, actual);
});
it('should return multiple correct suggestions given real word and a dictionary', () => {
const word = 'theer';
const dictionary = ['there', 'their', 'foo', 'bar'];
const expected = ['there', 'their'];
const actual = getSuggestion(word, dictionary);
assert.deepEqual(expected, actual);
});
it('should return correct # of suggestions given the limit argument', () => {
const word = 'theer';
const dictionary = ['there', 'their', 'foo', 'bar'];
const limit = 1;
const expected = 1;
const actual = getSuggestion(word, dictionary, limit).length;
assert.deepEqual(expected, actual);
});
});