25 lines
672 B
TypeScript
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();
|
|
});
|
|
});
|