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

25 lines
593 B
TypeScript
Raw Normal View History

2019-11-18 19:32:14 +01:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AdminComponent } from './admin.component';
2020-04-21 10:50:26 +02:00
fdescribe('AdminComponent', () => {
let component: AdminComponent;
let fixture: ComponentFixture<AdminComponent>;
2019-11-18 19:32:14 +01:00
2020-04-21 10:50:26 +02:00
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [AdminComponent],
}).compileComponents();
}));
2019-11-18 19:32:14 +01:00
2020-04-21 10:50:26 +02:00
beforeEach(() => {
fixture = TestBed.createComponent(AdminComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
2019-11-18 19:32:14 +01:00
2020-04-21 10:50:26 +02:00
it('should create', () => {
expect(component).toBeTruthy();
});
2019-11-18 19:32:14 +01:00
});