Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
kbeyro committed Feb 19, 2024
1 parent 0cb5f32 commit 11c9de2
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { DomainNamespaceAnnotationsComponent } from './domain-namespace-annotations.component';
import {TranslateFakeLoader, TranslateLoader, TranslateModule} from '@ngx-translate/core';

describe('DomainNamespaceAnnotationsComponent', () => {
let component: DomainNamespaceAnnotationsComponent;
let fixture: ComponentFixture<DomainNamespaceAnnotationsComponent>;

beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ DomainNamespaceAnnotationsComponent ]
declarations: [ DomainNamespaceAnnotationsComponent ],
imports: [
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useClass: TranslateFakeLoader
}
})
]
})
.compileComponents();

Expand Down

0 comments on commit 11c9de2

Please sign in to comment.