blob: e9cd3e7ad9869c1fb9b0f97dd057b82f2d641bd2 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
/* tslint:disable:no-unused-variable */
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { DebugElement } from '@angular/core';
import { GridFailureListComponent } from './grid-failure-list.component';
describe('GridFailureListComponent', () => {
let component: GridFailureListComponent;
let fixture: ComponentFixture<GridFailureListComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [GridFailureListComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(GridFailureListComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});