Fix failing tests
This commit is contained in:
@@ -3,6 +3,7 @@ import { CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA } from '@angular/core';
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { AccessibilityComponent } from './accessibility.component';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('AccessibilityComponent', () => {
|
||||
let component: AccessibilityComponent;
|
||||
@@ -13,7 +14,7 @@ describe('AccessibilityComponent', () => {
|
||||
void TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA, NO_ERRORS_SCHEMA],
|
||||
declarations: [AccessibilityComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
}).compileComponents();
|
||||
})
|
||||
);
|
||||
|
||||
@@ -1,12 +1,15 @@
|
||||
import { TestBed } from '@angular/core/testing';
|
||||
|
||||
import { EmployeeFormService } from './employee-form.service';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
import { HttpClientTestingModule } from '@angular/common/http/testing';
|
||||
|
||||
describe('EmployeeFormService', () => {
|
||||
let service: EmployeeFormService;
|
||||
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({});
|
||||
TestBed.configureTestingModule({ imports: [RouterTestingModule, ApmModule, HttpClientTestingModule] });
|
||||
service = TestBed.inject(EmployeeFormService);
|
||||
});
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { DeltagareCardComponent } from './deltagare-card.component';
|
||||
import { DeltagareCardService } from './deltagare-card.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('DeltagareCardComponent', () => {
|
||||
let component: DeltagareCardComponent;
|
||||
@@ -14,7 +15,7 @@ describe('DeltagareCardComponent', () => {
|
||||
waitForAsync(() => {
|
||||
void TestBed.configureTestingModule({
|
||||
declarations: [DeltagareCardComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [DeltagareCardService],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -8,6 +8,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { AvvikelseReportFormComponent } from './avvikelse-report-form.component';
|
||||
import { AvvikelseReportFormService } from './avvikelse-report-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('AvvikelseReportFormComponent', () => {
|
||||
let component: AvvikelseReportFormComponent;
|
||||
@@ -23,6 +24,7 @@ describe('AvvikelseReportFormComponent', () => {
|
||||
ReactiveFormsModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
DigiNgFormDatepickerModule,
|
||||
ApmModule,
|
||||
],
|
||||
providers: [AvvikelseReportFormService],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { FranvaroReportFormComponent } from './franvaro-report-form.component';
|
||||
import { FranvaroReportFormService } from './franvaro-report-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('FranvaroReportFormComponent', () => {
|
||||
let component: FranvaroReportFormComponent;
|
||||
@@ -14,7 +15,7 @@ describe('FranvaroReportFormComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [FranvaroReportFormComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [FranvaroReportFormService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -7,6 +7,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { GemensamPlaneringFormComponent } from './gemensam-planering-form.component';
|
||||
import { GemensamPlaneringFormService } from './gemensam-planering-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('GemensamPlaneringFormComponent', () => {
|
||||
let component: GemensamPlaneringFormComponent;
|
||||
@@ -21,6 +22,7 @@ describe('GemensamPlaneringFormComponent', () => {
|
||||
HttpClientTestingModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
DigiNgFormCheckboxModule,
|
||||
ApmModule,
|
||||
],
|
||||
providers: [GemensamPlaneringFormService],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -7,6 +7,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { InformativRapportFormComponent } from './informativ-rapport-form.component';
|
||||
import { InformativRapportFormService } from './informativ-rapport-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('InformativRapportFormComponent', () => {
|
||||
let component: InformativRapportFormComponent;
|
||||
@@ -16,7 +17,13 @@ describe('InformativRapportFormComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [InformativRapportFormComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule, ReactiveFormsModule, DigiNgFormRadiobuttonGroupModule],
|
||||
imports: [
|
||||
RouterTestingModule,
|
||||
HttpClientTestingModule,
|
||||
ReactiveFormsModule,
|
||||
ApmModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
],
|
||||
providers: [InformativRapportFormService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -7,6 +7,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { PeriodiskRedovisningFormComponent } from './periodisk-redovisning-form.component';
|
||||
import { PeriodiskRedovisningFormService } from './periodisk-redovisning-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('PeriodiskRedovisningFormComponent', () => {
|
||||
let component: PeriodiskRedovisningFormComponent;
|
||||
@@ -18,6 +19,7 @@ describe('PeriodiskRedovisningFormComponent', () => {
|
||||
declarations: [PeriodiskRedovisningFormComponent, LayoutComponent],
|
||||
imports: [
|
||||
RouterTestingModule,
|
||||
ApmModule,
|
||||
HttpClientTestingModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
DigiNgFormCheckboxModule,
|
||||
|
||||
@@ -7,6 +7,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { SignalFormComponent } from './signal-form.component';
|
||||
import { SignalFormService } from './signal-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('SignalFormComponent', () => {
|
||||
let component: SignalFormComponent;
|
||||
@@ -16,7 +17,13 @@ describe('SignalFormComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [SignalFormComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule, ReactiveFormsModule, DigiNgFormRadiobuttonGroupModule],
|
||||
imports: [
|
||||
RouterTestingModule,
|
||||
HttpClientTestingModule,
|
||||
ApmModule,
|
||||
ReactiveFormsModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
],
|
||||
providers: [SignalFormService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -8,6 +8,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { SlutredovisningFormComponent } from './slutredovisning-form.component';
|
||||
import { SlutredovisningFormService } from './slutredovisning-form.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('SlutredovisningReportFormComponent', () => {
|
||||
let component: SlutredovisningFormComponent;
|
||||
@@ -23,6 +24,7 @@ describe('SlutredovisningReportFormComponent', () => {
|
||||
ReactiveFormsModule,
|
||||
DigiNgFormRadiobuttonGroupModule,
|
||||
DigiNgFormDatepickerModule,
|
||||
ApmModule,
|
||||
],
|
||||
providers: [SlutredovisningFormService],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { AvvikelseReportViewComponent } from './avvikelse-report-view.component';
|
||||
import { AvvikelseReportViewService } from './avvikelse-report-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('AvvikelseReportViewComponent', () => {
|
||||
let component: AvvikelseReportViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('AvvikelseReportViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [AvvikelseReportViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [AvvikelseReportViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { FranvaroReportViewComponent } from './franvaro-report-view.component';
|
||||
import { FranvaroReportViewService } from './franvaro-report-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('FranvaroReportViewComponent', () => {
|
||||
let component: FranvaroReportViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('FranvaroReportViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [FranvaroReportViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [FranvaroReportViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { GemensamPlaneringViewComponent } from './gemensam-planering-view.component';
|
||||
import { GemensamPlaneringViewService } from './gemensam-planering-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('GemensamPlaneringViewComponent', () => {
|
||||
let component: GemensamPlaneringViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('GemensamPlaneringViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [GemensamPlaneringViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule, ApmModule],
|
||||
providers: [GemensamPlaneringViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { InformativRapportViewComponent } from './informativ-rapport-view.component';
|
||||
import { InformativRapportViewService } from './informativ-rapport-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('InformativRapportViewComponent', () => {
|
||||
let component: InformativRapportViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('InformativRapportViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [InformativRapportViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [InformativRapportViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { PeriodiskRedovisningViewComponent } from './periodisk-redovisning-view.component';
|
||||
import { PeriodiskRedovisningViewService } from './periodisk-redovisning-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('GemensamPlaneringViewComponent', () => {
|
||||
let component: PeriodiskRedovisningViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('GemensamPlaneringViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [PeriodiskRedovisningViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule, ApmModule],
|
||||
providers: [PeriodiskRedovisningViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { SignalViewComponent } from './signal-view.component';
|
||||
import { SignalViewService } from './signal-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('InformativRapportViewComponent', () => {
|
||||
let component: SignalViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('InformativRapportViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [SignalViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [SignalViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -5,6 +5,7 @@ import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from '@msfa-shared/components/layout/layout.component';
|
||||
import { SlutredovisningViewComponent } from './slutredovisning-view.component';
|
||||
import { SlutredovisningViewService } from './slutredovisning-view.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('GemensamPlaneringViewComponent', () => {
|
||||
let component: SlutredovisningViewComponent;
|
||||
@@ -14,7 +15,7 @@ describe('GemensamPlaneringViewComponent', () => {
|
||||
await TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [SlutredovisningViewComponent, LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule, ApmModule],
|
||||
providers: [SlutredovisningViewService],
|
||||
}).compileComponents();
|
||||
});
|
||||
|
||||
@@ -3,6 +3,7 @@ import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { MyAccountComponent } from './my-account.component';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('MyAccountComponent', () => {
|
||||
let component: MyAccountComponent;
|
||||
@@ -13,7 +14,7 @@ describe('MyAccountComponent', () => {
|
||||
void TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [MyAccountComponent],
|
||||
imports: [HttpClientTestingModule, RouterTestingModule],
|
||||
imports: [HttpClientTestingModule, ApmModule, RouterTestingModule],
|
||||
}).compileComponents();
|
||||
})
|
||||
);
|
||||
|
||||
@@ -3,6 +3,7 @@ import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { OrganizationPickerComponent } from './organization-picker.component';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('OrganizationPickerComponent', () => {
|
||||
let component: OrganizationPickerComponent;
|
||||
@@ -10,7 +11,7 @@ describe('OrganizationPickerComponent', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [HttpClientTestingModule, RouterTestingModule],
|
||||
imports: [HttpClientTestingModule, ApmModule, RouterTestingModule],
|
||||
declarations: [OrganizationPickerComponent],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -4,6 +4,7 @@ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { StartComponent } from './start.component';
|
||||
import { StartService } from './start.service';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('StartComponent', () => {
|
||||
let component: StartComponent;
|
||||
@@ -14,7 +15,7 @@ describe('StartComponent', () => {
|
||||
void TestBed.configureTestingModule({
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
declarations: [StartComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
providers: [StartService],
|
||||
}).compileComponents();
|
||||
})
|
||||
|
||||
@@ -2,6 +2,7 @@ import { HttpClientTestingModule } from '@angular/common/http/testing';
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { RouterTestingModule } from '@angular/router/testing';
|
||||
import { LayoutComponent } from './Layout.component';
|
||||
import { ApmModule } from '@elastic/apm-rum-angular';
|
||||
|
||||
describe('LayoutComponent', () => {
|
||||
let component: LayoutComponent;
|
||||
@@ -11,7 +12,7 @@ describe('LayoutComponent', () => {
|
||||
waitForAsync(() => {
|
||||
void TestBed.configureTestingModule({
|
||||
declarations: [LayoutComponent],
|
||||
imports: [RouterTestingModule, HttpClientTestingModule],
|
||||
imports: [RouterTestingModule, ApmModule, HttpClientTestingModule],
|
||||
}).compileComponents();
|
||||
})
|
||||
);
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { MultiselectComponent } from './multiselect.component';
|
||||
import { DropdownModule } from '@ui/dropdown/dropdown.module';
|
||||
import { UiMultiselectModule } from '@ui/multiselect/multiselect.module';
|
||||
|
||||
describe('MultiselectComponent', () => {
|
||||
let component: MultiselectComponent;
|
||||
@@ -9,7 +9,7 @@ describe('MultiselectComponent', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [DropdownModule],
|
||||
imports: [UiMultiselectModule],
|
||||
declarations: [MultiselectComponent],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
}).compileComponents();
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { UiPopoverComponent } from './ui-popover.component';
|
||||
import { DropdownModule } from '@ui/dropdown/dropdown.module';
|
||||
import { UiPopoverModule } from '@ui/popover/ui-popover.module';
|
||||
|
||||
describe('popoverComponent', () => {
|
||||
let component: UiPopoverComponent;
|
||||
@@ -9,7 +9,7 @@ describe('popoverComponent', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [DropdownModule],
|
||||
imports: [UiPopoverModule],
|
||||
declarations: [UiPopoverComponent],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
}).compileComponents();
|
||||
|
||||
Reference in New Issue
Block a user