Browse Source

Merge branch 'develop' of https://github.com/nocodb/nocodb into develop

pull/3755/head
Wing-Kam Wong 2 years ago
parent
commit
076e87fb43
  1. 4
      packages/nocodb/tests/unit/factory/row.ts

4
packages/nocodb/tests/unit/factory/row.ts

@ -29,6 +29,10 @@ const getRow = async (context, {project, table, id}) => {
.get(`/api/v1/db/data/noco/${project.id}/${table.id}/${id}`)
.set('xc-auth', context.token);
if(response.status !== 200) {
return undefined
}
return response.body;
};

Loading…
Cancel
Save