Browse Source

fix: test correction

pull/6987/head
Pranav C 1 year ago
parent
commit
a99b774317
  1. 2
      packages/nocodb/tests/unit/rest/tests/groupby.test.ts

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

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

Loading…
Cancel
Save