1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 14:28:04 +00:00
_/oclif/tests/commands/hello/world.test.ts

9 lines
245 B
TypeScript
Raw Normal View History

2022-04-15 16:52:45 +09:00
import { test, expect } from "vitest";
import { stdout } from "stdout-stderr";
2022-04-15 15:57:00 +09:00
import World from "../../../src/commands/hello/world";
test("hello world", async () => {
2022-04-15 16:52:45 +09:00
await World.run();
expect(stdout.output).toContain("hello world!");
2022-04-15 15:57:00 +09:00
});