zhaoyingbo 92fa30ef3d
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 2m42s
feat: 支持初步的CR
2024-08-12 12:24:45 +00:00

16 lines
306 B
TypeScript

import { test } from "bun:test"
import service from "../../service"
// 测试用例
test("Gitlab MR", async () => {
const project_id = 139032
const merge_request_iid = 4889
const res = await service.gitlab.mr.getDiffVersions(
project_id,
merge_request_iid
)
console.log(res)
}, 10000)