mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 14:28:04 +00:00
13 lines
372 B
TypeScript
13 lines
372 B
TypeScript
import { test, expect } from "vitest";
|
|
import run from "../../run";
|
|
import World from "../../../src/commands/hello/world";
|
|
|
|
test("hello world", async () => {
|
|
const res = await run(() => World.run());
|
|
expect(res).toContain("hello world!");
|
|
});
|
|
|
|
test("hello world", async () => {
|
|
const res = await run(() => World.run());
|
|
expect(res).toContain("hello world!");
|
|
});
|