Files
app-demo-login/src/app/interceptors/http-xsrf-interceptor/http-xsrf-interceptor.service.spec.ts
2022-06-20 16:00:38 +02:00

17 lines
424 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { HttpXsrfInterceptorService } from './http-xsrf-interceptor.service';
describe('HttpXsrfInterceptorService', () => {
let service: HttpXsrfInterceptorService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(HttpXsrfInterceptorService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});