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