From 828aef1873a2a15e822528acea40e33ade7af903 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Mon, 29 May 2023 17:33:01 +0300 Subject: [PATCH] chore(sasjs-tests): debugging --- sasjs-tests/src/testSuites/Basic.ts | 38 ++++++++++++++--------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/sasjs-tests/src/testSuites/Basic.ts b/sasjs-tests/src/testSuites/Basic.ts index a318004..fb9ba18 100644 --- a/sasjs-tests/src/testSuites/Basic.ts +++ b/sasjs-tests/src/testSuites/Basic.ts @@ -67,26 +67,26 @@ export const basicTests = ( assertion: (response: any) => response && response.isLoggedIn && response.userName === userName }, - { - title: 'Trigger login callback', - description: - 'Should trigger required login callback and after successful login, it should finish the request', - test: async () => { - await adapter.logOut() + // { + // title: 'Trigger login callback', + // description: + // 'Should trigger required login callback and after successful login, it should finish the request', + // test: async () => { + // await adapter.logOut() - return await adapter.request( - 'common/sendArr', - stringData, - undefined, - async () => { - await adapter.logIn(userName, password) - } - ) - }, - assertion: (response: any) => { - return response.table1[0][0] === stringData.table1[0].col1 - } - }, + // return await adapter.request( + // 'common/sendArr', + // stringData, + // undefined, + // async () => { + // await adapter.logIn(userName, password) + // } + // ) + // }, + // assertion: (response: any) => { + // return response.table1[0][0] === stringData.table1[0].col1 + // } + // }, { title: 'Request with debug on', description: