aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_services/auth.service.spec.ts
blob: f1251cacf9dda3b3bd9dc5222583fafa110ffe8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { TestBed } from '@angular/core/testing';

import { AuthService } from './auth.service';

describe('AuthService', () => {
  let service: AuthService;

  beforeEach(() => {
    TestBed.configureTestingModule({});
    service = TestBed.inject(AuthService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});