25 lines
687 B
TypeScript
25 lines
687 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ChangePasswordComponent } from './change-password.component';
|
|
|
|
describe('Account::ChangePasswordComponent', () => {
|
|
let component: ChangePasswordComponent;
|
|
let fixture: ComponentFixture<ChangePasswordComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ChangePasswordComponent]
|
|
}).compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(ChangePasswordComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|