nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/binary/gif-palette/gif-palette.component.spec.ts

Summary

Maintainability
B
6 hrs
Test Coverage
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { GifPaletteComponent } from './gif-palette.component';

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

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

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

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