Broker System for Supercredit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
656B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { LoanAddNewComponent } from './loan-add-new.component';
  3. describe('LoanAddNewComponent', () => {
  4. let component: LoanAddNewComponent;
  5. let fixture: ComponentFixture<LoanAddNewComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [ LoanAddNewComponent ]
  9. })
  10. .compileComponents();
  11. });
  12. beforeEach(() => {
  13. fixture = TestBed.createComponent(LoanAddNewComponent);
  14. component = fixture.componentInstance;
  15. fixture.detectChanges();
  16. });
  17. it('should create', () => {
  18. expect(component).toBeTruthy();
  19. });
  20. });