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