ngx-eagle
Version:
UI component infrastructure and Design components for mobile and desktop Angular web applications.
22 lines (17 loc) • 580 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SignatureComponent } from './signature.component';
describe('SignatureComponent', () => {
let component: SignatureComponent;
let fixture: ComponentFixture<SignatureComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [SignatureComponent]
});
fixture = TestBed.createComponent(SignatureComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});