You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
setup-nextflow/test/main.ts

18 lines
567 B
TypeScript

import test from "ava" // eslint-disable-line import/no-unresolved
import * as cp from "child_process"
import * as path from "path"
import * as process from "process"
// eslint-disable-next-line ava/no-skip-test
test.skip("test runs", t => {
process.env["INPUT_VERSION"] = "v22.10.2"
const np = process.execPath
const ip = path.join(__dirname, "..", "lib", "src", "main.js")
const options: cp.ExecFileSyncOptions = {
env: process.env
}
// eslint-disable-next-line no-console
console.log(cp.execFileSync(np, [ip], options).toString())
t.pass()
})