mirror of
https://github.com/davidmarkclements/0x.git
synced 2025-12-08 19:06:01 +00:00
9 lines
224 B
JavaScript
9 lines
224 B
JavaScript
'use strict'
|
|
const zeroEks = require('../')
|
|
const { join } = require('path')
|
|
zeroEks({
|
|
argv: [join(__dirname, 'rest-api'), '--my-flag', '"value for my flag"'],
|
|
workingDir: __dirname,
|
|
onPort: 'echo hello port $PORT'
|
|
})
|