24 lines
684 B
TypeScript
24 lines
684 B
TypeScript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
|
import { RightSidebarComponent } from './right-sidebar.component';
|
|
describe('RightSidebarComponent',
|
|
() => {
|
|
let component: RightSidebarComponent;
|
|
let fixture: ComponentFixture<RightSidebarComponent>;
|
|
beforeEach(
|
|
waitForAsync(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [RightSidebarComponent],
|
|
}).compileComponents();
|
|
})
|
|
);
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(RightSidebarComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
it('should create',
|
|
() => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|