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