Skip to content
Prev Previous commit
Next Next commit
use stackql-exec
  • Loading branch information
jeffreyaven committed Apr 28, 2024
commit 740b3e596187308135495652750c6300e607580b
3 changes: 3 additions & 0 deletions lib/assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ function assertResult(core) {
if (!RESULT) throw new Error("Result from StackQL execution is missing.");

const actualResult = parseResult(RESULT);

core.info("🔍 Checking results...");

const expectedResult = getExpectedResult(EXPECTED_RESULTS_STR, EXPECTED_RESULTS_FILE_PATH);

const resultSuccessful = checkResult(core, expectedResult, actualResult, EXPECTED_ROWS);
Expand Down