aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@core-xds/services/alert.service.spec.ts
blob: 2de2ac3cf76262b5e0609525e07cfb64c8fe1f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { TestBed, inject } from '@angular/core/testing';

import { AlertService } from './alert.service';

describe('AlertService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [AlertService],
    });
  });

  it('should be created', inject([AlertService], (service: AlertService) => {
    expect(service).toBeTruthy();
  }));
});