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