522b64d0
Arsisakarn Srilatanart
ทำให้ parent comp...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import { TestBed, inject } from '@angular/core/testing';
import { SharedServiceService } from './shared-service.service';
describe('SharedServiceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [SharedServiceService]
});
});
it('should ...', inject([SharedServiceService], (service: SharedServiceService) => {
expect(service).toBeTruthy();
}));
});
|