Skip to content
Snippets Groups Projects
network-empty-warning.component.spec.ts 719 B
Newer Older
AndiMajore's avatar
AndiMajore committed
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { NetworkEmptyWarningComponent } from './network-empty-warning.component';

describe('NetworkEmptyWarningComponent', () => {
  let component: NetworkEmptyWarningComponent;
  let fixture: ComponentFixture<NetworkEmptyWarningComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ NetworkEmptyWarningComponent ]
    })
    .compileComponents();
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(NetworkEmptyWarningComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});