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