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