mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-20 07:49:18 +00:00
26 lines
647 B
TypeScript
26 lines
647 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CopyrightComponent } from './copyright.component';
|
|
|
|
describe('CopyrightComponent', () => {
|
|
let component: CopyrightComponent;
|
|
let fixture: ComponentFixture<CopyrightComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ CopyrightComponent ]
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(CopyrightComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|