diff --git a/sasjs-tests/public/config.json b/sasjs-tests/public/config.json index dd0ef1f..cd9d1bc 100644 --- a/sasjs-tests/public/config.json +++ b/sasjs-tests/public/config.json @@ -4,8 +4,8 @@ "sasJsConfig": { "loginMechanism": "Redirected", "serverUrl": "", - "appLoc": "/Public/app/adapter-tests/services", - "serverType": "SASVIYA", + "appLoc": "/Public/app/adapter-tests", + "serverType": "SASJS", "debug": false, "contextName": "SAS Job Execution compute context", "useComputeApi": true diff --git a/sasjs-tests/src/main.ts b/sasjs-tests/src/main.ts index b28b242..4dd8f50 100644 --- a/sasjs-tests/src/main.ts +++ b/sasjs-tests/src/main.ts @@ -22,6 +22,7 @@ import { sendArrTests, sendObjTests } from './testSuites/RequestData' import { fileUploadTests } from './testSuites/FileUpload' import { computeTests } from './testSuites/Compute' import { sasjsRequestTests } from './testSuites/SasjsRequests' +import { specialCaseTests } from './testSuites/SpecialCases' async function init() { const appContainer = document.getElementById('app') @@ -98,7 +99,7 @@ function showTests( // basicTests(adapter, configTyped.userName || '', configTyped.password || ''), sendArrTests(adapter, appLoc), sendObjTests(adapter), - // specialCaseTests(adapter), + specialCaseTests(adapter), sasjsRequestTests(adapter), fileUploadTests(adapter) ]