Project

General

Profile

1
import { ComponentFixture, TestBed } from '@angular/core/testing';
2
import { LeftPanelComponent } from './left-panel.component';
3

    
4
describe('LeftPanelComponent', () => {
5
  let component: LeftPanelComponent;
6
  let fixture: ComponentFixture<LeftPanelComponent>;
7

    
8
  beforeEach(async () => {
9
    await TestBed.configureTestingModule({
10
      declarations: [ LeftPanelComponent ]
11
    })
12
    .compileComponents();
13
  });
14

    
15
  beforeEach(() => {
16
    fixture = TestBed.createComponent(LeftPanelComponent);
17
    component = fixture.componentInstance;
18
    fixture.detectChanges();
19
  });
20

    
21
  it('should create', () => {
22
    expect(component).toBeTruthy();
23
  });
24
});
(3-3/4)