-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2. added helper method in apiHelper.ts 3. added serial test in example 4. added parallel test in example
- Loading branch information
1 parent
06b443b
commit 23035e8
Showing
4 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import test from "@playwright/test"; | ||
|
||
test.describe.parallel("Run All Tests in Parallel", async () => { | ||
test("TestOne", async ({ page }) => {}); | ||
|
||
test("TestTwo", async ({ page }) => {}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import test from "@playwright/test"; | ||
|
||
test.describe.serial("Run all test in serial", async () => { | ||
test("TestOne", async ({ page }) => {}); | ||
|
||
test("TestTwo", async ({ page }) => {}); | ||
|
||
test("TestThree", async ({ page }) => {}); | ||
}); |