This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
import { describe, expect, it } from "vitest";
import { classifyFlockFailure } from "@/scripts/batch-flock-stress";
describe("classifyFlockFailure", () => {
it("识别报价上限", () => {
expect(classifyFlockFailure("FLOCK_QUOTE_LIMIT:获取报价达到上限")).toBe(
"rate_limit",
);
});