13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ElectronProxyService } from './electron-proxy.service';
|
|
|
|
describe('electron.ElectronProxyService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: ElectronProxyService = TestBed.get(ElectronProxyService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|