Browse Source

test: disable redundant test logs

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5249/head
Raju Udava 2 years ago
parent
commit
6f494d0dbc
  1. 2
      tests/playwright/tests/filters.spec.ts
  2. 3
      tests/playwright/tests/keyboardShortcuts.spec.ts

2
tests/playwright/tests/filters.spec.ts

@ -86,8 +86,6 @@ async function verifyFilter(param: {
return;
}
console.log(`Verifying filter: ${param.opType} ${param.opSubType}`);
await toolbar.clickFilter();
await toolbar.filter.add({
columnTitle: param.column,

3
tests/playwright/tests/keyboardShortcuts.spec.ts

@ -232,8 +232,7 @@ test.describe('Verify shortcuts', () => {
});
await api.dbTableRow.bulkCreate('noco', context.project.id, table.id, [record]);
const records = await api.dbTableRow.list('noco', context.project.id, table.id, { limit: 1 });
console.log(records);
await api.dbTableRow.list('noco', context.project.id, table.id, { limit: 1 });
} catch (e) {
console.error(e);
}

Loading…
Cancel
Save