Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bradsawadye committed Apr 16, 2024
1 parent f69cc7a commit c96c2b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/cucumber/features/steps/recipesSteps.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const path = require('path');
const chai = require("chai");
const { ClickHouse } = require('clickhouse');
const { Given, When, Then, setDefaultTimeout } = require("@cucumber/cucumber");
const { Console } = require("console");
setDefaultTimeout(30 * 60 * 1000);

const HOST =
Expand Down Expand Up @@ -100,7 +101,8 @@ Then("the data should be stored in clickhouse", async function () {
query("observation_example")
).toPromise();


console.log(patient)
console.log(observation)
expect(JSON.parse(patient).rows).to.be.greaterThan(0);
expect(JSON.parse(observation).rows).to.be.greaterThan(0);
});

0 comments on commit c96c2b1

Please sign in to comment.