h-usersite/angular/src/app/components/exit/exit.component.spec.ts
gofnnp 197c84f29c dev #12797
изменил расположение директорий и изменил файлы Jenkinsfile и gitignore
2022-10-11 10:40:59 +04:00

24 lines
585 B
TypeScript

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