Skip to content

Commit 57f7d8d

Browse files
Fix lint
1 parent 75c9be1 commit 57f7d8d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nodejs/test/client.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -912,6 +912,7 @@ describe("CopilotClient", () => {
912912
content: {},
913913
}),
914914
});
915+
expect(session).toBeDefined();
915916

916917
const createCall = rpcSpy.mock.calls.find((c) => c[0] === "session.create");
917918
expect(createCall).toBeDefined();
@@ -933,6 +934,7 @@ describe("CopilotClient", () => {
933934
const session = await client.createSession({
934935
onPermissionRequest: approveAll,
935936
});
937+
expect(session).toBeDefined();
936938

937939
const createCall = rpcSpy.mock.calls.find((c) => c[0] === "session.create");
938940
expect(createCall).toBeDefined();

0 commit comments

Comments
 (0)