Browse Source

test(nocodb): testCreateRowViewWithWrongView for kanban

pull/3563/head
Wing-Kam Wong 2 years ago
parent
commit
d5ca26d491
  1. 4
      packages/nocodb/tests/unit/rest/tests/viewRow.test.ts

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

@ -725,6 +725,10 @@ function viewRowTests() {
await testCreateRowViewWithWrongView(ViewTypes.FORM);
});
it('Create table row wrong kanban id', async function () {
await testCreateRowViewWithWrongView(ViewTypes.KANBAN);
});
// todo: Test that all the columns needed to be shown in the view are returned
const testFindOneSortedDataWithRequiredColumns = async (

Loading…
Cancel
Save