29 lines
615 B
JavaScript
29 lines
615 B
JavaScript
import { test, expect, vi } from "vitest";
|
|
import { exportedForTest } from "../commands/prepare.mjs";
|
|
import consola from "consola";
|
|
import { execSync } from "node:child_process";
|
|
|
|
const testFn = exportedForTest.prepare;
|
|
|
|
test("start prepare script", () => {
|
|
const spy = vi.spyOn(consola, "start");
|
|
|
|
testFn();
|
|
|
|
expect(spy).toHaveBeenCalled();
|
|
});
|
|
|
|
test("execute nitropack prepare", () => {
|
|
const command = "npx nitropack prepare";
|
|
const param = { stdio: "inherit" };
|
|
vi.mock("node:child_process");
|
|
|
|
testFn();
|
|
|
|
expect(execSync).toHaveBeenCalled();
|
|
});
|
|
|
|
/**
|
|
* TODO:
|
|
* - add test for catch error
|
|
*/
|