botframework-webchat-component
Version:
React component of botframework-webchat
12 lines (10 loc) • 397 B
JavaScript
import inputtableKey from '../Utils/TypeFocusSink/inputtableKey';
describe('inputtableKey', () => {
it('Should return the inputtable key', () => {
expect(inputtableKey('Add')).toBe('+');
expect(inputtableKey('Decimal')).toBe('.');
expect(inputtableKey('Divide')).toBe('/');
expect(inputtableKey('Multiply')).toBe('*');
expect(inputtableKey('Subtract')).toBe('-');
});
});