From e2e2824f371af84cd35c9ee349625bb49c46d5b9 Mon Sep 17 00:00:00 2001 From: Mihajlo Medjedovic Date: Thu, 3 Dec 2020 13:05:02 +0100 Subject: [PATCH] chore: cleanup --- sasjs-tests/src/testSuites/Compute.ts | 1 - src/SASjs.ts | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/sasjs-tests/src/testSuites/Compute.ts b/sasjs-tests/src/testSuites/Compute.ts index ec9ed35..777ebec 100644 --- a/sasjs-tests/src/testSuites/Compute.ts +++ b/sasjs-tests/src/testSuites/Compute.ts @@ -80,7 +80,6 @@ export const computeTests = (adapter: SASjs): TestSuite => ({ }); const validateLog = (text: string, log: string): boolean => { - console.log(`[JSON.stringify(log)]`, JSON.stringify(log)) const isValid = JSON.stringify(log).includes(text) return isValid diff --git a/src/SASjs.ts b/src/SASjs.ts index 9604fc8..ef66f45 100644 --- a/src/SASjs.ts +++ b/src/SASjs.ts @@ -208,11 +208,11 @@ export default class SASjs { /** * Executes the sas code against given sas server - * @param fileName - name of the file to run. + * @param fileName - name of the file to run. It will be converted to path to the file being submitted for execution. * @param linesOfCode - lines of sas code from the file to run. - * @param contextName - context name override on which code will be run. - * @param accessToken - the access tokne to authorizing the request. - * @param debug - debug flag override + * @param contextName - context name on which code will be run on the server. + * @param accessToken - (optional) the access token for authorizing the request. + * @param debug - (optional) if true, global debug config will be overriden */ public async executeScriptSASViya( fileName: string,