Angular Web App
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

26 rader
697 B

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