chore: 清理无用测试文件并更新配置与文档

This commit is contained in:
xiaojunnuo
2026-06-27 00:20:33 +08:00
parent 4dff48e807
commit cfba7b4daa
8 changed files with 36 additions and 189 deletions
@@ -1,16 +0,0 @@
import { createHttpRequest } from "@midwayjs/mock";
import { Application } from "@midwayjs/koa";
import assert from "assert";
import { getApp } from "../setup.js";
describe("test/controller/home.test.ts", () => {
it("should POST /api/get_user", async function (this: any) {
const app: Application = getApp();
// make request
const result = await createHttpRequest(app).get("/api/get_user").query({ uid: 123 });
// use expect by jest
assert(result.status === 200);
assert(result.body.message === "OK");
});
});
@@ -1,16 +0,0 @@
import { createHttpRequest } from "@midwayjs/mock";
import { Application } from "@midwayjs/koa";
import assert from "assert";
import { getApp } from "../setup.js";
describe("test/controller/home.test.ts", () => {
it("should GET /", async () => {
const app: Application = getApp();
// make request
const result = await createHttpRequest(app).get("/");
// use expect by jest
assert(result.status === 200);
assert(result.text === "Hello Midwayjs!");
});
});