From e2cb787f897349e62b0f116b82e69f7b659abb06 Mon Sep 17 00:00:00 2001 From: Yury Shkoda Date: Mon, 29 May 2023 17:40:40 +0300 Subject: [PATCH] chore(sasjs-tests): trying to run only sendArrTests --- sasjs-tests/src/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sasjs-tests/src/App.tsx b/sasjs-tests/src/App.tsx index 8b99e58..a1f2259 100644 --- a/sasjs-tests/src/App.tsx +++ b/sasjs-tests/src/App.tsx @@ -1,7 +1,7 @@ import React, { ReactElement, useState, useContext, useEffect } from 'react' import { TestSuiteRunner, TestSuite, AppContext } from '@sasjs/test-framework' import { basicTests } from './testSuites/Basic' -// import { sendArrTests, sendObjTests } from './testSuites/RequestData' +import { sendArrTests, sendObjTests } from './testSuites/RequestData' // import { specialCaseTests } from './testSuites/SpecialCases' // import { sasjsRequestTests } from './testSuites/SasjsRequests' // import '@sasjs/test-framework/dist/index.css' @@ -16,8 +16,8 @@ const App = (): ReactElement<{}> => { useEffect(() => { if (adapter) { const testSuites = [ - basicTests(adapter, config.userName, config.password) - // sendArrTests(adapter, appLoc), + // basicTests(adapter, config.userName, config.password) + sendArrTests(adapter, appLoc) // sendObjTests(adapter), // specialCaseTests(adapter), // sasjsRequestTests(adapter),