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