Browse Source

test: Gql Update api test correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/473/head
Pranav C 3 years ago
parent
commit
dc1a594ca7
  1. 2
      packages/nocodb/src/__tests__/graphql.test.ts

2
packages/nocodb/src/__tests__/graphql.test.ts

@ -816,7 +816,7 @@ describe('{Auth, CRUD, HasMany, Belongs} Tests', () => {
.expect(200, function (err, res) {
if (err) done(err);
const data = res.body.data.countryUpdate;
expect(data).to.be.a('number');
expect(data).to.be.a('object');
// todo:
done();
})

Loading…
Cancel
Save