generator-php-scaffold
Version:
This generator create a application with restful architecture with Zend 3 or Symfony framework
15 lines (11 loc) • 375 B
text/typescript
import { MaterialDashboardAngularPage } from './app.po';
describe('material-dashboard-angular App', () => {
let page: MaterialDashboardAngularPage;
beforeEach(() => {
page = new MaterialDashboardAngularPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});