Browse Source

test: rollup count as interger in mysql/sqlite

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5848/head
Raju Udava 1 year ago
parent
commit
9e6391dc23
  1. 4
      tests/playwright/tests/db/01-webhook.spec.ts

4
tests/playwright/tests/db/01-webhook.spec.ts

@ -714,6 +714,10 @@ test.describe.serial('Webhook', () => {
expectedData.data.previous_rows[0].CityCodeLookup = [23, 33];
// @ts-ignore
expectedData.data.rows[0].CityCodeLookup = [23, 33];
// @ts-ignore
expectedData.data.previous_rows[0].CityList = 2;
// @ts-ignore
expectedData.data.rows[0].CityList = 2;
if (isMysql(context)) {
// @ts-ignore

Loading…
Cancel
Save