[frontend] Remove info dialogs test stubs

This commit is contained in:
Cathy Hu 2020-09-03 19:49:53 +02:00
parent d8a270573e
commit bfaed7841a
3 changed files with 0 additions and 72 deletions

View file

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

View file

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

View file

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