24 lines
607 B
TypeScript
24 lines
607 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { CreateKeyComponent } from './create.component';
|
|
|
|
describe('CreateComponent', () => {
|
|
let component: CreateKeyComponent;
|
|
let fixture: ComponentFixture<CreateKeyComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [CreateKeyComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(CreateKeyComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|