mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-02-13 06:25:21 +00:00
16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
|
import { TestBed, inject } from '@angular/core/testing';
|
||
|
|
||
|
import { SymbolService } from './symbol.service';
|
||
|
|
||
|
describe('SymbolService', () => {
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
providers: [SymbolService]
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should be created', inject([SymbolService], (service: SymbolService) => {
|
||
|
expect(service).toBeTruthy();
|
||
|
}));
|
||
|
});
|