This commit is contained in:
keisuke-umezawa
2023-06-04 15:59:14 +09:00
parent 4f5cf5fd3d
commit 0f5f9e9905
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
name: integration-tests
name: e2e-tests
on:
pull_request:
branches:
+3 -1
View File
@@ -2,7 +2,9 @@ import re
from playwright.sync_api import Page, expect
def test_homepage_has_Playwright_in_title_and_get_started_link_linking_to_the_intro_page(page: Page):
def test_homepage_has_Playwright_in_title_and_get_started_link_linking_to_the_intro_page(
page: Page,
):
page.goto("https://playwright.dev/")
# Expect a title "to contain" a substring.