funky-framadate-front/mocks/old-stuff/pages/example/kind/kind.component.spec.ts

25 lines
585 B
TypeScript
Raw Normal View History

2019-08-09 15:14:23 +02:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2019-08-10 16:57:36 +02:00
import { KindComponent } from './kind.component';
2019-08-09 15:14:23 +02:00
2019-08-10 16:57:36 +02:00
describe('KindComponent', () => {
2020-04-21 10:50:26 +02:00
let component: KindComponent;
let fixture: ComponentFixture<KindComponent>;
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [KindComponent],
}).compileComponents();
}));
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(KindComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-08-09 15:14:23 +02:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-08-09 15:14:23 +02:00
});