Browse Source

playwright tests : remove only from few tests accidentally added

pull/5848/head
starbirdtech383 1 year ago
parent
commit
8367793c33
  1. 2
      tests/playwright/tests/db/projectOperations.spec.ts
  2. 4
      tests/playwright/tests/db/tableOperations.spec.ts

2
tests/playwright/tests/db/projectOperations.spec.ts

@ -81,7 +81,7 @@ test.describe('Project operations', () => {
await projectPage.deleteProject({ title: 'project-rename', withoutPrefix: true });
});
test.only('project_duplicate', async () => {
test('project_duplicate', async () => {
// if project already exists, delete it to avoid test failures due to residual data
const testProjectName = 'project-to-imexp';
const dupeProjectName: string = testProjectName + ' copy';

4
tests/playwright/tests/db/tableOperations.spec.ts

@ -56,7 +56,7 @@ test.describe('Table Operations', () => {
await dashboard.treeView.verifyTabIcon({ title: 'Address', icon: 'american-football' });
});
test.only('duplicate_table', async () => {
test('duplicate_table', async () => {
const orginalTableName = 'Actor';
const dupTableName = 'Actor copy';
// verify table icon customization
@ -85,7 +85,7 @@ test.describe('Table Operations', () => {
// check individual field values where values does not match as per design
});
test.only('duplicate_table_with_no_data_views', async () => {
test('duplicate_table_with_no_data_views', async () => {
const orginalTableName = 'Actor';
const dupTableName = 'Actor copy';
// verify table icon customization

Loading…
Cancel
Save