You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/eclair/transactions/transactions.component.spec.ts

26 lines
688 B
TypeScript

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