We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e08d598 commit 3d52258Copy full SHA for 3d52258
libs/langchain-anthropic/src/tests/chat_models.int.test.ts
@@ -13,16 +13,6 @@ import {
13
import { CallbackManager } from "@langchain/core/callbacks/manager";
14
import { ChatAnthropic } from "../chat_models.js";
15
16
-async function sleep(ms = 1000): Promise<void> {
17
- return new Promise<void>((resolve) => {
18
- setTimeout(resolve, ms);
19
- });
20
-}
21
-
22
-afterEach(async () => {
23
- await sleep();
24
-});
25
26
test("Test ChatAnthropic", async () => {
27
const chat = new ChatAnthropic({
28
modelName: "claude-3-sonnet-20240229",
0 commit comments