mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 04:18:58 +00:00
* fix create command with template prefixed with @ char * add typescript test for create command * format test
32 lines
951 B
TypeScript
32 lines
951 B
TypeScript
import { spawn } from "bun";
|
|
import { afterEach, beforeEach, expect, it } from "bun:test";
|
|
import { bunExe, bunEnv as env } from "harness";
|
|
import { mkdtemp, realpath, rm, writeFile } from "fs/promises";
|
|
import { tmpdir } from "os";
|
|
import { join } from "path";
|
|
|
|
let x_dir: string;
|
|
|
|
beforeEach(async () => {
|
|
x_dir = await realpath(await mkdtemp(join(tmpdir(), "bun-x.test")));
|
|
});
|
|
afterEach(async () => {
|
|
await rm(x_dir, { force: true, recursive: true });
|
|
});
|
|
|
|
it("should create selected template with @ prefix", async () => {
|
|
const { stdout, stderr, exited } = spawn({
|
|
cmd: [bunExe(), "create", "@quick-start/some-template"],
|
|
cwd: x_dir,
|
|
stdout: null,
|
|
stdin: "pipe",
|
|
stderr: "pipe",
|
|
env,
|
|
});
|
|
|
|
const err = await new Response(stderr).text();
|
|
expect(err.split(/\r?\n/)).toContain(
|
|
`error: package "@quick-start/create-some-template" not found registry.npmjs.org/@quick-start%2fcreate-some-template 404`,
|
|
);
|
|
});
|