@remote.it/core
Version:
Core remote.it JavasScript/TypeScript library
19 lines (16 loc) • 453 B
text/typescript
import { ServiceTypes } from './ServiceTypes'
import { TargetProcess } from './TargetProcess'
describe('TargetProcess', () => {
test('shouldnt explode', async () => {
const target = new TargetProcess({
name: 'some name',
hardwareID: 'some-hwid',
hostname: 'some-hostname',
port: 33000,
secret: 'somesekret',
type: ServiceTypes.ssh.id,
uid: '80:00:00:00',
})
expect(target).toBeDefined()
})
})