Angular job portal app
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

closingdocs.component.spec.ts 661 B

12345678910111213141516171819202122232425
  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { ClosingdocsComponent } from './closingdocs.component';
  3. describe('ClosingdocsComponent', () => {
  4. let component: ClosingdocsComponent;
  5. let fixture: ComponentFixture<ClosingdocsComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ ClosingdocsComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(ClosingdocsComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });