import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { SortablejsModule } from 'ngx-sortablejs'; import { MultipleListsComponent } from './multiple-lists.component'; describe('MultipleListsComponent', () => { let component: MultipleListsComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [MultipleListsComponent], imports: [ SortablejsModule, ], }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(MultipleListsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });