This is my test: describe ("I do a test database call", () => {
// Again this is an example query for obvious reasons
const query = "SELECT * FROM cellular_call_restrictions"
cy.task("sqlQuery", query).then((resolvedValue: any) => {
resolvedValue["rows"].forEach((item: any) => {
console.log("result==>" + item);
});
})
})