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

import { TextService } from './text.service';

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

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