mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-16 16:40:06 +00:00
chore: cleanup
This commit is contained in:
@@ -80,7 +80,6 @@ export const computeTests = (adapter: SASjs): TestSuite => ({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const validateLog = (text: string, log: string): boolean => {
|
const validateLog = (text: string, log: string): boolean => {
|
||||||
console.log(`[JSON.stringify(log)]`, JSON.stringify(log))
|
|
||||||
const isValid = JSON.stringify(log).includes(text)
|
const isValid = JSON.stringify(log).includes(text)
|
||||||
|
|
||||||
return isValid
|
return isValid
|
||||||
|
|||||||
@@ -208,11 +208,11 @@ export default class SASjs {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Executes the sas code against given sas server
|
* 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 linesOfCode - lines of sas code from the file to run.
|
||||||
* @param contextName - context name override on which code will be run.
|
* @param contextName - context name on which code will be run on the server.
|
||||||
* @param accessToken - the access tokne to authorizing the request.
|
* @param accessToken - (optional) the access token for authorizing the request.
|
||||||
* @param debug - debug flag override
|
* @param debug - (optional) if true, global debug config will be overriden
|
||||||
*/
|
*/
|
||||||
public async executeScriptSASViya(
|
public async executeScriptSASViya(
|
||||||
fileName: string,
|
fileName: string,
|
||||||
|
|||||||
Reference in New Issue
Block a user