16 lines
347 B
TypeScript
16 lines
347 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { TextService } from './text.service';
|
|
|
|
describe('TextService', () => {
|
|
let service: TextService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(TextService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|