Commit 0895f47
Changed files (1)
test
test/index.test.js
@@ -487,4 +487,8 @@ test('timeout() expiration works', async () => {
assert.is(signal, undefined)
})
+test('malformed cmd error', async () => {
+ assert.throws(() => $`\033`, /malformed/i)
+})
+
test.run()