organizee-front/src/app/components/tache/tache.component.spec.ts
2022-01-18 17:12:04 +01:00

25 lines
619 B
TypeScript

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