dnet-applications/frontends/dnet-is-application/src/app/cleaner-tester/cleaner-tester.component.sp...

24 lines
649 B
TypeScript

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