32 lines
891 B
TypeScript
32 lines
891 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
import { provideHttpClientTesting } from '@angular/common/http/testing';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { Register } from './register';
|
|
|
|
describe('Register', () => {
|
|
let component: Register;
|
|
let fixture: ComponentFixture<Register>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Register],
|
|
providers: [
|
|
provideRouter([]),
|
|
provideHttpClient(withInterceptorsFromDi()),
|
|
provideHttpClientTesting(),
|
|
],
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Register);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|