All checks were successful
CI Monitor MIflow / build-image (push) Successful in 2m42s
16 lines
306 B
TypeScript
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)
|