import { ComponentFixture, TestBed } from '@angular/core/testing'; import { LimejsComponent } from './limejs.component'; describe('LimejsComponent', () => { let component: LimejsComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ LimejsComponent ] }) .compileComponents(); fixture = TestBed.createComponent(LimejsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });