ticketfrei3/kibicara-frontend/src/app/platforms/twitter/twitter-dialog/twitter-dialog.component.spec.ts
2020-08-31 19:14:53 +02:00

25 lines
672 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { TwitterDialogComponent } from './twitter-dialog.component';
describe('TwitterDialogComponent', () => {
let component: TwitterDialogComponent;
let fixture: ComponentFixture<TwitterDialogComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [TwitterDialogComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(TwitterDialogComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});