Inegrate calendi in meeting Schedule
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
366 B

  1. import { MeetingScheduleTemplatePage } from './app.po';
  2. describe('MeetingSchedule App', function() {
  3. let page: MeetingScheduleTemplatePage;
  4. beforeEach(() => {
  5. page = new MeetingScheduleTemplatePage();
  6. });
  7. it('should display message saying app works', () => {
  8. page.navigateTo();
  9. expect(page.getParagraphText()).toEqual('app works!');
  10. });
  11. });