mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2025-04-12 00:33:05 +03:00
26 lines
650 B
TypeScript
26 lines
650 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CryptoProComponent } from './crypto-pro.component';
|
|
|
|
describe('CryptoProComponent', () => {
|
|
let component: CryptoProComponent;
|
|
let fixture: ComponentFixture<CryptoProComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ CryptoProComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(CryptoProComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|