Skip to content

Commit 07be0ae

Browse files
committed
removed skip to test workflow| Issue #1775
1 parent ba2858b commit 07be0ae

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/frontend/e2e/01-create-new-project.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
import { test, expect } from '@playwright/test';
55

6-
test.skip('create new project', async ({ browserName, page }) => {
6+
//removed skip to test workflow| Issue #1775
7+
test('create new project', async ({ browserName, page }) => {
78
// Specific for this large test, only run in one browser
89
// (playwright.config.ts is configured to run all browsers by default)
910
test.skip(browserName !== 'chromium', 'Test only for chromium!');

src/frontend/e2e/02-mapper-flow.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { test, expect } from '@playwright/test';
55

66
import { openTestProject } from './helpers';
77

8-
test.describe.skip('mapper flow', () => {
8+
//removed skip to test workflow| Issue #1775
9+
test.describe('mapper flow', () => {
910
test('task actions', async ({ browserName, page }) => {
1011
// Specific for this large test, only run in one browser
1112
// (playwright.config.ts is configured to run all browsers by default)

0 commit comments

Comments
 (0)