Skip to content

Commit

Permalink
udpated test
Browse files Browse the repository at this point in the history
  • Loading branch information
mithunj committed Feb 21, 2025
1 parent 5e1fe77 commit 9225412
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions __tests__/OmnichannelChatSDK.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3049,7 +3049,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const conversationDisconnectFn = jest.spyOn(chatSDK.conversation, 'disconnect');
Expand Down Expand Up @@ -3081,7 +3081,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const conversationDisconnectFn = jest.spyOn(chatSDK.conversation, 'disconnect');
Expand Down Expand Up @@ -3111,7 +3111,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const conversationDisconnectFn = jest.spyOn(chatSDK.conversation, 'disconnect');
Expand Down Expand Up @@ -3143,7 +3143,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const conversationDisconnectFn = jest.spyOn(chatSDK.conversation, 'disconnect');
Expand Down Expand Up @@ -3175,7 +3175,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const conversationDisconnectFn = jest.spyOn(chatSDK.conversation, 'disconnect');
Expand Down Expand Up @@ -3206,7 +3206,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {

await chatSDK.startChat();
chatSDK.conversation = {
stopPooling: jest.fn()
stopPolling: jest.fn()
};

try {
Expand Down Expand Up @@ -3259,7 +3259,7 @@ describe('Omnichannel Chat SDK, Sequential', () => {
chatSDK.authenticatedUserToken = optionalParams.authenticatedUserToken;
chatSDK.conversation = {
disconnect: jest.fn(),
stopPooling: jest.fn()
stopPolling: jest.fn()
};

const sessionCloseOptionalParams = {
Expand Down

0 comments on commit 9225412

Please sign in to comment.