From ef1e816b0919cd1f5008bd3a52f0660135d6b108 Mon Sep 17 00:00:00 2001 From: mulahasanovic Date: Tue, 5 May 2026 16:46:23 +0200 Subject: [PATCH] test(sasjs): update config appLoc, enable specialCase tests --- sasjs-tests/public/config.json | 4 ++-- sasjs-tests/src/main.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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) ]