mirror of
https://github.com/mempool/mempool.git
synced 2025-01-09 15:06:54 +01:00
26 lines
628 B
TypeScript
26 lines
628 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AmountComponent } from './amount.component';
|
|
|
|
describe('AmountComponent', () => {
|
|
let component: AmountComponent;
|
|
let fixture: ComponentFixture<AmountComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ AmountComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(AmountComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|