Skip to content
Snippets Groups Projects
section-container.component.spec.ts 713 B
Newer Older
  • Learn to ignore specific revisions
  • import { ComponentFixture, TestBed } from '@angular/core/testing';
    import { SectionContainerComponent } from './section-container.component';
    
    describe('SectionContainerComponent', () => {
      let component: SectionContainerComponent;
      let fixture: ComponentFixture<SectionContainerComponent>;
    
      beforeEach(async () => {
        await TestBed.configureTestingModule({
          declarations: [
            SectionContainerComponent
          ]
        })
          .compileComponents();
      });
    
      beforeEach(() => {
        fixture = TestBed.createComponent(SectionContainerComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    
    });