Browse Source

test(nocodb): prettier table.test.ts

pull/3563/head
Wing-Kam Wong 2 years ago
parent
commit
1675c0ed83
  1. 3
      packages/nocodb/tests/unit/rest/tests/table.test.ts

3
packages/nocodb/tests/unit/rest/tests/table.test.ts

@ -45,7 +45,7 @@ function tableTest() {
return new Error('Tables is not be created');
}
if (response.body.columns.length !== (defaultColumns(context))) {
if (response.body.columns.length !== defaultColumns(context)) {
return new Error('Columns not saved properly');
}
@ -152,7 +152,6 @@ function tableTest() {
if (tables.length !== 1) {
return new Error('Tables should not be created');
}
});
it('Create table with title having leading white space', async function () {

Loading…
Cancel
Save