Browse Source

fix(playwright): Enabled grid operation test

pull/4514/head
Muhammed Mustafa 2 years ago committed by Pranav C
parent
commit
318b6b47b1
  1. 2
      tests/playwright/scripts/stressTestNewlyAddedTest.js
  2. 2
      tests/playwright/tests/gridOperations.spec.ts

2
tests/playwright/scripts/stressTestNewlyAddedTest.js

@ -13,7 +13,7 @@ void (async () => {
return;
}
const { stdout } = await exec(`git diff origin/develop -- *.spec.ts **/*.spec.ts | grep test\\(`);
const { stdout } = await exec(`git diff origin/develop -- **/*.spec.ts | grep test\\( | cat`);
// eslint-disable-next-line no-undef
const dbType = process.env.E2E_DB_TYPE;

2
tests/playwright/tests/gridOperations.spec.ts

@ -11,7 +11,7 @@ test.describe('Grid operations', () => {
dashboard = new DashboardPage(page, context.project);
});
test.skip('Clipboard support', async () => {
test('Clipboard support', async () => {
// close 'Team & Auth' tab
await dashboard.closeTab({ title: 'Team & Auth' });

Loading…
Cancel
Save