Details
Whenever I Rstest is run through Deno (deno x rstest), the following error is shown:
error: Uncaught BrokenPipe: Broken pipe (os error 32)
Reproduce Steps
simple.test.ts:
import { expect, test } from "@rstest/core";
test("simple", () => {
expect(1).toBe(1);
});
In terminal:
docker run \
-w /app \
--mount type=bind,src=simple.test.ts,dst=/app/src/simple.test.ts \
-it denoland/deno:latest \
sh -c 'deno install --node-modules-dir npm:@rstest/core && deno x rstest'
Details
Whenever I Rstest is run through Deno (
deno x rstest), the following error is shown:Reproduce Steps
simple.test.ts:In terminal:
docker run \ -w /app \ --mount type=bind,src=simple.test.ts,dst=/app/src/simple.test.ts \ -it denoland/deno:latest \ sh -c 'deno install --node-modules-dir npm:@rstest/core && deno x rstest'