1
0
mirror of https://github.com/sasjs/adapter.git synced 2025-12-11 01:14:36 +00:00

chore: cleanup

This commit is contained in:
Mihajlo Medjedovic
2020-12-03 13:05:02 +01:00
parent d461135980
commit e2e2824f37
2 changed files with 4 additions and 5 deletions

View File

@@ -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

View File

@@ -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,