Blame view

src/app/component/import-vessels/import-vessels.component.spec.ts 676 Bytes
c666d6db6   lsagona   add map graph and...
1
  import { ComponentFixture, TestBed } from '@angular/core/testing';
632c4ac2f   lsagona   import vessels
2
  import { ImportVesselsComponent } from './import-vessels.component';
c666d6db6   lsagona   add map graph and...
3

632c4ac2f   lsagona   import vessels
4
5
6
  describe('ImportVesselsComponent', () => {
    let component: ImportVesselsComponent;
    let fixture: ComponentFixture<ImportVesselsComponent>;
c666d6db6   lsagona   add map graph and...
7
8
9
  
    beforeEach(async () => {
      await TestBed.configureTestingModule({
632c4ac2f   lsagona   import vessels
10
        declarations: [ ImportVesselsComponent ]
c666d6db6   lsagona   add map graph and...
11
12
13
14
15
      })
      .compileComponents();
    });
  
    beforeEach(() => {
632c4ac2f   lsagona   import vessels
16
      fixture = TestBed.createComponent(ImportVesselsComponent);
c666d6db6   lsagona   add map graph and...
17
18
19
20
21
22
23
24
      component = fixture.componentInstance;
      fixture.detectChanges();
    });
  
    it('should create', () => {
      expect(component).toBeTruthy();
    });
  });