[frontend] Version bump angular/core and angular/cli to 11

This commit is contained in:
ogdbd3h5qze42igcv8wcrqk3 2023-03-18 14:32:46 +01:00
parent 6cb8a46f6c
commit 1824057e3e
44 changed files with 3040 additions and 4818 deletions

View file

@ -44,7 +44,6 @@
"optimization": true, "optimization": true,
"outputHashing": "all", "outputHashing": "all",
"sourceMap": false, "sourceMap": false,
"extractCss": true,
"namedChunks": false, "namedChunks": false,
"extractLicenses": true, "extractLicenses": true,
"vendorChunk": false, "vendorChunk": false,

File diff suppressed because it is too large Load diff

View file

@ -12,17 +12,17 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "~10.2.5", "@angular/animations": "~11.2.14",
"@angular/cdk": "^10.2.7", "@angular/cdk": "^10.2.7",
"@angular/common": "~10.2.5", "@angular/common": "~11.2.14",
"@angular/compiler": "~10.2.5", "@angular/compiler": "~11.2.14",
"@angular/core": "~10.2.5", "@angular/core": "~11.2.14",
"@angular/forms": "~10.2.5", "@angular/forms": "~11.2.14",
"@angular/localize": "^10.2.5", "@angular/localize": "^11.2.14",
"@angular/material": "^10.2.7", "@angular/material": "^10.2.7",
"@angular/platform-browser": "~10.2.5", "@angular/platform-browser": "~11.2.14",
"@angular/platform-browser-dynamic": "~10.2.5", "@angular/platform-browser-dynamic": "~11.2.14",
"@angular/router": "~10.2.5", "@angular/router": "~11.2.14",
"ng2-search-filter": "^0.5.1", "ng2-search-filter": "^0.5.1",
"ngx-markdown": "^10.1.1", "ngx-markdown": "^10.1.1",
"rxjs": "~6.5.4", "rxjs": "~6.5.4",
@ -30,18 +30,18 @@
"zone.js": "~0.10.2" "zone.js": "~0.10.2"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.1002.4", "@angular-devkit/build-angular": "~0.1102.19",
"@angular/cli": "~10.2.4", "@angular/cli": "~11.2.19",
"@angular/compiler-cli": "~10.2.5", "@angular/compiler-cli": "~11.2.14",
"@angular/language-service": "~10.2.5", "@angular/language-service": "~11.2.14",
"@openapitools/openapi-generator-cli": "^1.0.18-5.0.0-beta2", "@openapitools/openapi-generator-cli": "^1.0.18-5.0.0-beta2",
"@types/jasmine": "^3.5.14", "@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3", "@types/jasminewd2": "~2.0.3",
"@types/node": "^12.12.64", "@types/node": "^12.12.64",
"codelyzer": "^5.1.2", "codelyzer": "^6.0.0",
"jasmine-core": "~3.5.0", "jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0", "jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0", "karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0", "karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2", "karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0", "karma-jasmine": "~4.0.0",

View file

@ -28,7 +28,7 @@ const routes: Routes = [
]; ];
@NgModule({ @NgModule({
imports: [RouterModule.forRoot(routes), SharedModule], imports: [RouterModule.forRoot(routes, { relativeLinkResolution: 'legacy' }), SharedModule],
exports: [RouterModule], exports: [RouterModule],
}) })
export class AppRoutingModule {} export class AppRoutingModule {}

View file

@ -1,9 +1,9 @@
import { TestBed, async } from '@angular/core/testing'; import { TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing'; import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
describe('AppComponent', () => { describe('AppComponent', () => {
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
imports: [ imports: [
RouterTestingModule RouterTestingModule

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ConfirmComponent } from './confirm.component'; import { ConfirmComponent } from './confirm.component';
@ -6,7 +6,7 @@ describe('ConfirmComponent', () => {
let component: ConfirmComponent; let component: ConfirmComponent;
let fixture: ComponentFixture<ConfirmComponent>; let fixture: ComponentFixture<ConfirmComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ ConfirmComponent ] declarations: [ ConfirmComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { LoginComponent } from './login.component'; import { LoginComponent } from './login.component';
@ -6,7 +6,7 @@ describe('LoginComponent', () => {
let component: LoginComponent; let component: LoginComponent;
let fixture: ComponentFixture<LoginComponent>; let fixture: ComponentFixture<LoginComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ LoginComponent ] declarations: [ LoginComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PasswordResetComponent } from './password-reset.component'; import { PasswordResetComponent } from './password-reset.component';
@ -6,7 +6,7 @@ describe('PasswordResetComponent', () => {
let component: PasswordResetComponent; let component: PasswordResetComponent;
let fixture: ComponentFixture<PasswordResetComponent>; let fixture: ComponentFixture<PasswordResetComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [PasswordResetComponent], declarations: [PasswordResetComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { SetPasswordComponent } from './set-password.component'; import { SetPasswordComponent } from './set-password.component';
@ -6,7 +6,7 @@ describe('SetPasswordComponent', () => {
let component: SetPasswordComponent; let component: SetPasswordComponent;
let fixture: ComponentFixture<SetPasswordComponent>; let fixture: ComponentFixture<SetPasswordComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [SetPasswordComponent], declarations: [SetPasswordComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RegisterComponent } from './register.component'; import { RegisterComponent } from './register.component';
@ -6,7 +6,7 @@ describe('RegisterComponent', () => {
let component: RegisterComponent; let component: RegisterComponent;
let fixture: ComponentFixture<RegisterComponent>; let fixture: ComponentFixture<RegisterComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ RegisterComponent ] declarations: [ RegisterComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { AccountSettingsComponent } from './account-settings.component'; import { AccountSettingsComponent } from './account-settings.component';
@ -6,7 +6,7 @@ describe('AccountSettingsComponent', () => {
let component: AccountSettingsComponent; let component: AccountSettingsComponent;
let fixture: ComponentFixture<AccountSettingsComponent>; let fixture: ComponentFixture<AccountSettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ AccountSettingsComponent ] declarations: [ AccountSettingsComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { BoardComponent } from './board.component'; import { BoardComponent } from './board.component';
@ -6,7 +6,7 @@ describe('BoardComponent', () => {
let component: BoardComponent; let component: BoardComponent;
let fixture: ComponentFixture<BoardComponent>; let fixture: ComponentFixture<BoardComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [BoardComponent], declarations: [BoardComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HoodpageComponent } from './hoodpage.component'; import { HoodpageComponent } from './hoodpage.component';
@ -6,7 +6,7 @@ describe('HoodpageComponent', () => {
let component: HoodpageComponent; let component: HoodpageComponent;
let fixture: ComponentFixture<HoodpageComponent>; let fixture: ComponentFixture<HoodpageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [HoodpageComponent], declarations: [HoodpageComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { BadwordsComponent } from './badwords.component'; import { BadwordsComponent } from './badwords.component';
@ -6,7 +6,7 @@ describe('BadwordsComponent', () => {
let component: BadwordsComponent; let component: BadwordsComponent;
let fixture: ComponentFixture<BadwordsComponent>; let fixture: ComponentFixture<BadwordsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [BadwordsComponent], declarations: [BadwordsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HoodsettingsComponent } from './hoodsettings.component'; import { HoodsettingsComponent } from './hoodsettings.component';
@ -6,7 +6,7 @@ describe('HoodsettingsComponent', () => {
let component: HoodsettingsComponent; let component: HoodsettingsComponent;
let fixture: ComponentFixture<HoodsettingsComponent>; let fixture: ComponentFixture<HoodsettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [HoodsettingsComponent], declarations: [HoodsettingsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TriggerComponent } from './trigger.component'; import { TriggerComponent } from './trigger.component';
@ -6,7 +6,7 @@ describe('TriggerComponent', () => {
let component: TriggerComponent; let component: TriggerComponent;
let fixture: ComponentFixture<TriggerComponent>; let fixture: ComponentFixture<TriggerComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TriggerComponent], declarations: [TriggerComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PlatformsComponent } from './platforms.component'; import { PlatformsComponent } from './platforms.component';
@ -6,7 +6,7 @@ describe('PlatformsComponent', () => {
let component: PlatformsComponent; let component: PlatformsComponent;
let fixture: ComponentFixture<PlatformsComponent>; let fixture: ComponentFixture<PlatformsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [PlatformsComponent], declarations: [PlatformsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { SettingsComponent } from './settings.component'; import { SettingsComponent } from './settings.component';
@ -6,7 +6,7 @@ describe('SettingsComponent', () => {
let component: SettingsComponent; let component: SettingsComponent;
let fixture: ComponentFixture<SettingsComponent>; let fixture: ComponentFixture<SettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [SettingsComponent], declarations: [SettingsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { DashboardComponent } from './dashboard.component'; import { DashboardComponent } from './dashboard.component';
@ -6,7 +6,7 @@ describe('DashboardComponent', () => {
let component: DashboardComponent; let component: DashboardComponent;
let fixture: ComponentFixture<DashboardComponent>; let fixture: ComponentFixture<DashboardComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ DashboardComponent ] declarations: [ DashboardComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { FaqComponent } from './faq.component'; import { FaqComponent } from './faq.component';
@ -6,7 +6,7 @@ describe('FaqComponent', () => {
let component: FaqComponent; let component: FaqComponent;
let fixture: ComponentFixture<FaqComponent>; let fixture: ComponentFixture<FaqComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [FaqComponent], declarations: [FaqComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HoodsComponent } from './hoods.component'; import { HoodsComponent } from './hoods.component';
@ -6,7 +6,7 @@ describe('HoodsComponent', () => {
let component: HoodsComponent; let component: HoodsComponent;
let fixture: ComponentFixture<HoodsComponent>; let fixture: ComponentFixture<HoodsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ HoodsComponent ] declarations: [ HoodsComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { NewHoodDialogComponent } from './new-hood-dialog.component'; import { NewHoodDialogComponent } from './new-hood-dialog.component';
@ -6,7 +6,7 @@ describe('NewHoodDialogComponent', () => {
let component: NewHoodDialogComponent; let component: NewHoodDialogComponent;
let fixture: ComponentFixture<NewHoodDialogComponent>; let fixture: ComponentFixture<NewHoodDialogComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [NewHoodDialogComponent], declarations: [NewHoodDialogComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { EmailBotCardComponent } from './email-bot-card.component'; import { EmailBotCardComponent } from './email-bot-card.component';
@ -6,7 +6,7 @@ describe('EmailBotCardComponent', () => {
let component: EmailBotCardComponent; let component: EmailBotCardComponent;
let fixture: ComponentFixture<EmailBotCardComponent>; let fixture: ComponentFixture<EmailBotCardComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmailBotCardComponent], declarations: [EmailBotCardComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { EmailConfirmationComponent } from './email-confirmation.component'; import { EmailConfirmationComponent } from './email-confirmation.component';
@ -6,7 +6,7 @@ describe('EmailConfirmationComponent', () => {
let component: EmailConfirmationComponent; let component: EmailConfirmationComponent;
let fixture: ComponentFixture<EmailConfirmationComponent>; let fixture: ComponentFixture<EmailConfirmationComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmailConfirmationComponent], declarations: [EmailConfirmationComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { EmailDialogComponent } from './email-dialog.component'; import { EmailDialogComponent } from './email-dialog.component';
@ -6,7 +6,7 @@ describe('EmailDialogComponent', () => {
let component: EmailDialogComponent; let component: EmailDialogComponent;
let fixture: ComponentFixture<EmailDialogComponent>; let fixture: ComponentFixture<EmailDialogComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmailDialogComponent], declarations: [EmailDialogComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { EmailSettingsComponent } from './email-settings.component'; import { EmailSettingsComponent } from './email-settings.component';
@ -6,7 +6,7 @@ describe('EmailSettingsComponent', () => {
let component: EmailSettingsComponent; let component: EmailSettingsComponent;
let fixture: ComponentFixture<EmailSettingsComponent>; let fixture: ComponentFixture<EmailSettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmailSettingsComponent], declarations: [EmailSettingsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { EmailUnsubscribeComponent } from './email-unsubscribe.component'; import { EmailUnsubscribeComponent } from './email-unsubscribe.component';
@ -6,7 +6,7 @@ describe('EmailUnsubscribeComponent', () => {
let component: EmailUnsubscribeComponent; let component: EmailUnsubscribeComponent;
let fixture: ComponentFixture<EmailUnsubscribeComponent>; let fixture: ComponentFixture<EmailUnsubscribeComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [EmailUnsubscribeComponent], declarations: [EmailUnsubscribeComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PlatformsInfoPageComponent } from './platforms-info-page.component'; import { PlatformsInfoPageComponent } from './platforms-info-page.component';
@ -6,7 +6,7 @@ describe('PlatformsInfoPageComponent', () => {
let component: PlatformsInfoPageComponent; let component: PlatformsInfoPageComponent;
let fixture: ComponentFixture<PlatformsInfoPageComponent>; let fixture: ComponentFixture<PlatformsInfoPageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [PlatformsInfoPageComponent], declarations: [PlatformsInfoPageComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TelegramBotCardComponent } from './telegram-bot-card.component'; import { TelegramBotCardComponent } from './telegram-bot-card.component';
@ -6,7 +6,7 @@ describe('TelegramBotCardComponent', () => {
let component: TelegramBotCardComponent; let component: TelegramBotCardComponent;
let fixture: ComponentFixture<TelegramBotCardComponent>; let fixture: ComponentFixture<TelegramBotCardComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TelegramBotCardComponent], declarations: [TelegramBotCardComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TelegramDialogComponent } from './telegram-dialog.component'; import { TelegramDialogComponent } from './telegram-dialog.component';
@ -6,7 +6,7 @@ describe('TelegramDialogComponent', () => {
let component: TelegramDialogComponent; let component: TelegramDialogComponent;
let fixture: ComponentFixture<TelegramDialogComponent>; let fixture: ComponentFixture<TelegramDialogComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TelegramDialogComponent], declarations: [TelegramDialogComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TelegramSettingsComponent } from './telegram-settings.component'; import { TelegramSettingsComponent } from './telegram-settings.component';
@ -6,7 +6,7 @@ describe('TelegramSettingsComponent', () => {
let component: TelegramSettingsComponent; let component: TelegramSettingsComponent;
let fixture: ComponentFixture<TelegramSettingsComponent>; let fixture: ComponentFixture<TelegramSettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TelegramSettingsComponent], declarations: [TelegramSettingsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TwitterBotCardComponent } from './twitter-bot-card.component'; import { TwitterBotCardComponent } from './twitter-bot-card.component';
@ -6,7 +6,7 @@ describe('TwitterBotCardComponent', () => {
let component: TwitterBotCardComponent; let component: TwitterBotCardComponent;
let fixture: ComponentFixture<TwitterBotCardComponent>; let fixture: ComponentFixture<TwitterBotCardComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TwitterBotCardComponent], declarations: [TwitterBotCardComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TwitterCallbackComponent } from './twitter-callback.component'; import { TwitterCallbackComponent } from './twitter-callback.component';
@ -6,7 +6,7 @@ describe('TwitterCallbackComponent', () => {
let component: TwitterCallbackComponent; let component: TwitterCallbackComponent;
let fixture: ComponentFixture<TwitterCallbackComponent>; let fixture: ComponentFixture<TwitterCallbackComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TwitterCallbackComponent], declarations: [TwitterCallbackComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { TwitterSettingsComponent } from './twitter-settings.component'; import { TwitterSettingsComponent } from './twitter-settings.component';
@ -6,7 +6,7 @@ describe('TwitterSettingsComponent', () => {
let component: TwitterSettingsComponent; let component: TwitterSettingsComponent;
let fixture: ComponentFixture<TwitterSettingsComponent>; let fixture: ComponentFixture<TwitterSettingsComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [TwitterSettingsComponent], declarations: [TwitterSettingsComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { FaqComponent } from './faq.component'; import { FaqComponent } from './faq.component';
@ -6,7 +6,7 @@ describe('FaqComponent', () => {
let component: FaqComponent; let component: FaqComponent;
let fixture: ComponentFixture<FaqComponent>; let fixture: ComponentFixture<FaqComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [FaqComponent], declarations: [FaqComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HomepageComponent } from './homepage.component'; import { HomepageComponent } from './homepage.component';
@ -6,7 +6,7 @@ describe('HomepageComponent', () => {
let component: HomepageComponent; let component: HomepageComponent;
let fixture: ComponentFixture<HomepageComponent>; let fixture: ComponentFixture<HomepageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ HomepageComponent ] declarations: [ HomepageComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HoodpageComponent } from './hoodpage.component'; import { HoodpageComponent } from './hoodpage.component';
@ -6,7 +6,7 @@ describe('HoodpageComponent', () => {
let component: HoodpageComponent; let component: HoodpageComponent;
let fixture: ComponentFixture<HoodpageComponent>; let fixture: ComponentFixture<HoodpageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ HoodpageComponent ] declarations: [ HoodpageComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { HoodspageComponent } from './hoodspage.component'; import { HoodspageComponent } from './hoodspage.component';
@ -6,7 +6,7 @@ describe('HoodspageComponent', () => {
let component: HoodspageComponent; let component: HoodspageComponent;
let fixture: ComponentFixture<HoodspageComponent>; let fixture: ComponentFixture<HoodspageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ HoodspageComponent ] declarations: [ HoodspageComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { OrganizerspageComponent } from './organizerspage.component'; import { OrganizerspageComponent } from './organizerspage.component';
@ -6,7 +6,7 @@ describe('OrganizerspageComponent', () => {
let component: OrganizerspageComponent; let component: OrganizerspageComponent;
let fixture: ComponentFixture<OrganizerspageComponent>; let fixture: ComponentFixture<OrganizerspageComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ OrganizerspageComponent ] declarations: [ OrganizerspageComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PublicPagesComponent } from './public-pages.component'; import { PublicPagesComponent } from './public-pages.component';
@ -6,7 +6,7 @@ describe('PublicPagesComponent', () => {
let component: PublicPagesComponent; let component: PublicPagesComponent;
let fixture: ComponentFixture<PublicPagesComponent>; let fixture: ComponentFixture<PublicPagesComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ PublicPagesComponent ] declarations: [ PublicPagesComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { FooterComponent } from './footer.component'; import { FooterComponent } from './footer.component';
@ -6,7 +6,7 @@ describe('FooterComponent', () => {
let component: FooterComponent; let component: FooterComponent;
let fixture: ComponentFixture<FooterComponent>; let fixture: ComponentFixture<FooterComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [FooterComponent], declarations: [FooterComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { OverlayComponent } from './overlay.component'; import { OverlayComponent } from './overlay.component';
@ -6,7 +6,7 @@ describe('OverlayComponent', () => {
let component: OverlayComponent; let component: OverlayComponent;
let fixture: ComponentFixture<OverlayComponent>; let fixture: ComponentFixture<OverlayComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [OverlayComponent], declarations: [OverlayComponent],
}).compileComponents(); }).compileComponents();

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ToolbarComponent } from './toolbar.component'; import { ToolbarComponent } from './toolbar.component';
@ -6,7 +6,7 @@ describe('ToolbarComponent', () => {
let component: ToolbarComponent; let component: ToolbarComponent;
let fixture: ComponentFixture<ToolbarComponent>; let fixture: ComponentFixture<ToolbarComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ ToolbarComponent ] declarations: [ ToolbarComponent ]
}) })

View file

@ -1,4 +1,4 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { YesNoDialogComponent } from './yes-no-dialog.component'; import { YesNoDialogComponent } from './yes-no-dialog.component';
@ -6,7 +6,7 @@ describe('YesNoDialogComponent', () => {
let component: YesNoDialogComponent; let component: YesNoDialogComponent;
let fixture: ComponentFixture<YesNoDialogComponent>; let fixture: ComponentFixture<YesNoDialogComponent>;
beforeEach(async(() => { beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [YesNoDialogComponent], declarations: [YesNoDialogComponent],
}).compileComponents(); }).compileComponents();