@arizeai/phoenix-client
Version:
A client for the Phoenix API
15 lines • 655 B
JavaScript
import { afterAll as vitestAfterAll, beforeAll as vitestBeforeAll, describe as vitestDescribe, test as vitestTest, } from "vitest";
import { createTestApi } from "../testing/define-api.js";
export { evaluate, logAnnotation, logOutput, traceEvaluator, } from "../testing/helpers.js";
const hooks = {
describe: vitestDescribe,
describeOnly: vitestDescribe.only,
describeSkip: vitestDescribe.skip,
test: vitestTest,
testOnly: vitestTest.only,
testSkip: vitestTest.skip,
beforeAll: vitestBeforeAll,
afterAll: vitestAfterAll,
};
export const { describe, test, it } = createTestApi(() => hooks);
//# sourceMappingURL=index.js.map