name-suggestion-index/tests/stemmer.test.js
Bryan Housel 1c4fc70e3b WIP Modernize
- switch to type: module
- replace all CJS require/module.exports with ES6 import/expor
2021-06-22 00:04:52 -04:00

17 lines
444 B
JavaScript

import { stemmer } from '../index.mjs';
describe('stemmer', () => {
test('removes noise', () => {
expect(stemmer('First National Bank')).toBe('firstnational');
expect(stemmer('Shell Gas')).toBe('shell');
expect(stemmer('Verizon Wireless')).toBe('verizon');
});
test('returns empty string if no input', () => {
expect(stemmer()).toBe('');
expect(stemmer(null)).toBe('');
expect(stemmer({})).toBe('');
});
});