diff options
Diffstat (limited to 'tests/testdata/npm/child_process_fork_test')
-rw-r--r-- | tests/testdata/npm/child_process_fork_test/main.out | 2 | ||||
-rw-r--r-- | tests/testdata/npm/child_process_fork_test/main.ts | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/testdata/npm/child_process_fork_test/main.out b/tests/testdata/npm/child_process_fork_test/main.out new file mode 100644 index 000000000..d5bc57741 --- /dev/null +++ b/tests/testdata/npm/child_process_fork_test/main.out @@ -0,0 +1,2 @@ +function +Done. diff --git a/tests/testdata/npm/child_process_fork_test/main.ts b/tests/testdata/npm/child_process_fork_test/main.ts new file mode 100644 index 000000000..e560edb7e --- /dev/null +++ b/tests/testdata/npm/child_process_fork_test/main.ts @@ -0,0 +1,4 @@ +import "npm:chalk@4"; +import { run } from "npm:@denotest/child-process-fork"; + +run(); |