1
0
mirror of https://github.com/sasjs/adapter.git synced 2026-01-05 03:30:05 +00:00

fix: utils import, tests fix, auto testing script

This commit is contained in:
2022-04-28 20:46:36 +02:00
parent aabe473ef6
commit 7b78f65c4a
8 changed files with 6248 additions and 2008 deletions

View File

@@ -138,7 +138,7 @@ export const sendArrTests = (adapter: SASjs): TestSuite => ({
result =
result &&
res.table1[index][3] ===
(multipleRowsWithNulls.table1[index].col4 || ' ')
(multipleRowsWithNulls.table1[index].col4 || '')
})
return result
}
@@ -164,7 +164,7 @@ export const sendArrTests = (adapter: SASjs): TestSuite => ({
result =
result &&
res.table1[index][3] ===
(multipleColumnsWithNulls.table1[index].col4 || ' ')
(multipleColumnsWithNulls.table1[index].col4 || '')
})
return result
}
@@ -329,7 +329,7 @@ export const sendObjTests = (adapter: SASjs): TestSuite => ({
result =
result &&
res.table1[index].COL4 ===
(multipleRowsWithNulls.table1[index].col4 || ' ')
(multipleRowsWithNulls.table1[index].col4 || '')
})
return result
}
@@ -358,7 +358,7 @@ export const sendObjTests = (adapter: SASjs): TestSuite => ({
result =
result &&
res.table1[index].COL4 ===
(multipleColumnsWithNulls.table1[index].col4 || ' ')
(multipleColumnsWithNulls.table1[index].col4 || '')
})
return result
}