您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

15 行
297 B

  1. import { AppPage } from './app.po';
  2. describe('angular5-course App', () => {
  3. let page: AppPage;
  4. beforeEach(() => {
  5. page = new AppPage();
  6. });
  7. it('should display welcome message', () => {
  8. page.navigateTo();
  9. expect(page.getParagraphText()).toEqual('Welcome to app!');
  10. });
  11. });