Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
query-tile.component.spec.ts 646 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { QueryTileComponent } from './query-tile.component';

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

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

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

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