Skip to content

[Bug]: Broken pipe when running from Deno #828

@tversteeg

Description

@tversteeg

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'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions