mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-08 12:57:46 +00:00
* Add test to frameworks * Add example for Docusaurus v2 * Add example for ionic-angular * Update READMEs * Use existing versions * Reset yarn.lock * Add schema validation and add missing Scully.io logo
25 lines
499 B
TypeScript
25 lines
499 B
TypeScript
import { AppPage } from './app.po';
|
|
|
|
describe('new App', () => {
|
|
let page: AppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AppPage();
|
|
});
|
|
|
|
it('should display the menu', () => {
|
|
page.navigateTo();
|
|
expect(page.getMenu()).toBeTruthy();
|
|
});
|
|
|
|
it('should get the slides text', () => {
|
|
page.navigateTo();
|
|
expect(page.getFirstSlide()).toBe('ion-slide');
|
|
});
|
|
|
|
it('should create a router outlet', () => {
|
|
page.navigateTo();
|
|
expect(page.getRouter()).toBeTruthy();
|
|
});
|
|
});
|