import {NgbTypeaheadConfig} from './typeahead-config'; describe('ngb-typehead-config', () => { it('should have sensible default values', () => { const config = new NgbTypeaheadConfig(); expect(config.container).toBeUndefined(); expect(config.editable).toBeTruthy(); expect(config.focusFirst).toBeTruthy(); expect(config.showHint).toBeFalsy(); }); });