Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
Something went wrong. Try again.
TypeScript
1234567891011121314151617/* eslint-disable import/no-duplicates */import { exec } from 'node:child_process'import * as child_process from 'node:child_process'import defaultProcess from 'node:child_process'
export function execHelloWorld() { exec('hello world')}
export function execImportAll() { child_process.exec('import all')}
export function execDefault() { defaultProcess.exec('default')}