increments
Version:
Create polls and manage votes with a MongoDB or MySQL database.
15 lines (11 loc) • 309 B
text/typescript
import { LegalizePage } from './app.po';
describe('legalize App', () => {
let page: LegalizePage;
beforeEach(() => {
page = new LegalizePage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});