ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
15 lines (11 loc) • 372 B
text/typescript
import {Ng2BootstrapPage} from './app.po';
describe('ng2-bootstrap demo', function (): any {
let page: Ng2BootstrapPage;
beforeEach(() => {
page = new Ng2BootstrapPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Bootstrap components for Angular');
});
});