Browse Source

Merge pull request #8276 from nocodb/nc-fix/unit-test-pg

fix: unit test pg
nc-feat/xc-auth-throttler
Pranav C 3 months ago committed by GitHub
parent
commit
c6afb4d7b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      packages/nocodb/tests/unit/model/tests/baseModelSql.test.ts

6
packages/nocodb/tests/unit/model/tests/baseModelSql.test.ts

@ -147,9 +147,11 @@ function baseModelSqlTests() {
row_id: '1',
op_type: 'DATA',
op_sub_type: 'UPDATE',
description:
'Record with ID 1 has been updated in Table Table1_Title.\nColumn "Title" got changed from "test-0" to "test"',
});
expect(rowUpdatedAudit.description).to.contains(
'Record with ID 1 has been updated in Table Table1_Title',
);
});
it('Bulk update record', async () => {

Loading…
Cancel
Save