Commit fc42ec9

Anton Golub <mailbox@antongolub.ru>
2021-05-26 20:28:21
test: check ts-files processing (#121)
1 parent 0a4eb1c
Changed files (1)
test.mjs
@@ -87,6 +87,10 @@ import {strict as assert} from 'assert'
   await $`node zx.mjs examples/markdown.md`
 }
 
+{ // TypeScript scripts are working
+  await $`node zx.mjs examples/typescript.ts`
+}
+
 { // Pipes are working
   let {stdout} = await $`echo "hello"`
     .pipe($`awk '{print $1" world"}'`)