Files
browser/platform_web/contracts/jobPresentation.test.ts
T

11 lines
386 B
TypeScript

import { describe, expect, it } from "vitest";
import { jobCapabilityLabel } from "./jobPresentation";
describe("jobCapabilityLabel", () => {
it("keeps Run routing identifiers out of operator task titles", () => {
expect(jobCapabilityLabel("process.install")).toBe("安装服务端");
expect(jobCapabilityLabel("dependencies.install")).toBe("安装运行依赖");
});
});