mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 21:27:42 +01:00
29 lines
803 B
TypeScript
29 lines
803 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { LucideAngularModule } from './lucide-angular.module';
|
|
import { LucideAngularComponent } from './lucide-angular.component';
|
|
|
|
describe('LucideAngularComponent', () => {
|
|
let component: LucideAngularComponent;
|
|
let fixture: ComponentFixture<LucideAngularComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ LucideAngularComponent ],
|
|
imports: [
|
|
LucideAngularModule.pick({ })
|
|
],
|
|
})
|
|
.compileComponents();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(LucideAngularComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|