Project: Mall App Client: Maiora
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

app.e2e-spec.ts 282 B

1234567891011121314
  1. import { AppPage } from './app.po';
  2. describe('new App', () => {
  3. let page: AppPage;
  4. beforeEach(() => {
  5. page = new AppPage();
  6. });
  7. it('should be blank', () => {
  8. page.navigateTo();
  9. expect(page.getParagraphText()).toContain('The world is your oyster.');
  10. });
  11. });