Skip to content

Commit

Permalink
Adding more tests later, still experimenting
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua-mae committed May 30, 2024
1 parent 11fee9f commit 89a9788
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Playwright Tests
on: [push, pull_request]

jobs:
test:
Personal-Page-Tests:
runs-on: ubuntu-latest

steps:
Expand Down
53 changes: 0 additions & 53 deletions playwright-tests/sticky_header.py

This file was deleted.

5 changes: 5 additions & 0 deletions playwright-tests/test_firstload.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from playwright.sync_api import Page, expect

def test_has_title(page: Page):
page.goto("https://joshuamae.com")
expect(page).to_have_title("Joshua Mae")

0 comments on commit 89a9788

Please sign in to comment.