pracowniaapp2Front/src/app/right-panel/right-panel.component.spec.ts

26 lines
657 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RightPanelComponent } from './right-panel.component';
describe('RightPanelComponent', () => {
let component: RightPanelComponent;
let fixture: ComponentFixture<RightPanelComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RightPanelComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RightPanelComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});