No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

auth.service.spec.ts 593B

1234567891011121314151617181920212223
  1. import { TestBed } from '@angular/core/testing';
  2. import { provideHttpClient } from '@angular/common/http';
  3. import { provideHttpClientTesting } from '@angular/common/http/testing';
  4. import { AuthService } from './auth.service';
  5. describe('AuthService', () => {
  6. let service: AuthService;
  7. beforeEach(() => {
  8. TestBed.configureTestingModule({
  9. providers: [
  10. provideHttpClient(),
  11. provideHttpClientTesting(),
  12. AuthService
  13. ]
  14. });
  15. service = TestBed.inject(AuthService);
  16. });
  17. it('should be created', () => {
  18. expect(service).toBeTruthy();
  19. });
  20. });