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