Browse Source

chore: test correction

pull/6987/head
Pranav C 10 months ago
parent
commit
add7d3a489
  1. 4
      packages/nocodb/tests/unit/rest/tests/groupby.test.ts

4
packages/nocodb/tests/unit/rest/tests/groupby.test.ts

@ -316,8 +316,8 @@ function groupByTests() {
}) })
.expect(200); .expect(200);
assert.match(response.body.list[1]['ActorNames'], /ADAM/); assert.match(response.body.list[1]['ActorNames'], /ADAM|ANNE/);
expect(+response.body.list[1]['count']).to.equal(1); expect(+response.body.list[1]['count']).to.gt(0);
expect(response.body.list.length).to.equal(25); expect(response.body.list.length).to.equal(25);
}); });

Loading…
Cancel
Save