source: trip-planner-front/src/app/planner/detail-planner/detail-planner.component.spec.ts@ 6c1585f

Last change on this file since 6c1585f was 6a80231, checked in by Ema <ema_spirova@…>, 3 years ago

create initial planner and routing with angular

  • Property mode set to 100644
File size: 676 bytes
Line 
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { DetailPlannerComponent } from './detail-planner.component';
4
5describe('DetailPlannerComponent', () => {
6 let component: DetailPlannerComponent;
7 let fixture: ComponentFixture<DetailPlannerComponent>;
8
9 beforeEach(async () => {
10 await TestBed.configureTestingModule({
11 declarations: [ DetailPlannerComponent ]
12 })
13 .compileComponents();
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(DetailPlannerComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25});
Note: See TracBrowser for help on using the repository browser.