Skip to content

Commit

Permalink
test(fix): fixed autocomplete test
Browse files Browse the repository at this point in the history
Refs: #302
  • Loading branch information
AntoninoBonanno committed Jan 16, 2024
1 parent 082ee93 commit 9132ae9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { ItAutocompleteComponent } from './autocomplete.component';
import { tb_base } from '../../../../test';

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

beforeEach(() => {
TestBed.configureTestingModule({
declarations: [ItAutocompleteComponent],
});
beforeEach(async () => {
await TestBed.configureTestingModule(tb_base).compileComponents();

fixture = TestBed.createComponent(ItAutocompleteComponent);
component = fixture.componentInstance;
fixture.detectChanges();
Expand Down

0 comments on commit 9132ae9

Please sign in to comment.