-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from nash1111/issue-52-2
feat: add playwright
- Loading branch information
Showing
9 changed files
with
80 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Update test-results | ||
|
||
on: | ||
pull_request: | ||
branches: [master] | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
update-test-results: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- uses: oven-sh/setup-bun@v1 | ||
- name: Extract branch name | ||
id: extract_branch | ||
run: | | ||
echo "branch=${{ github.head_ref }}" >> $GITHUB_ENV | ||
- name: Checkout to branch | ||
run: | | ||
git checkout ${{ env.branch }} | ||
git config --global url."https://${{ secrets.BLOG_TOKEN }}:[email protected]/".insteadOf "https://github.com/" | ||
- name: Install dependencies | ||
run: bun install | ||
|
||
- name: Start server | ||
run: | | ||
bun run dev & | ||
echo $! > server.pid | ||
- name: Wait for server to start | ||
run: sleep 10 | ||
|
||
- name: Run Playwright tests | ||
run: bunx playwright install --with-deps && bunx playwright test | ||
|
||
- name: Stop server | ||
run: kill $(cat server.pid) | ||
|
||
- name: Check diff | ||
id: diff | ||
run: | | ||
git add -N . | ||
git diff --name-only --exit-code test-results/ | ||
continue-on-error: true | ||
- name: Commit & Push | ||
run: | | ||
set -x | ||
git config user.name github-actions[bot] | ||
git config user.email github-actions[bot]@users.noreply.github.com | ||
git add . | ||
git commit -m 'chore: update test-results' --allow-empty | ||
git config pull.rebase false | ||
git pull origin ${{ env.branch }} | ||
git push origin ${{ env.branch }} | ||
env: | ||
GH_TOKEN: ${{ secrets.BLOG_TOKEN }} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
export const lastUpdated = "2024-06-05T08:06:56"; | ||
export const lastUpdated = "2024-06-05T14:42:37"; |
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 @@ | ||
1834 |
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,4 @@ | ||
{ | ||
"status": "passed", | ||
"failedTests": [] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,8 @@ | ||
import { test } from '@playwright/test'; | ||
|
||
test.describe('/task page', () => { | ||
test('should render without crashing', async ({ page }) => { | ||
await page.goto('http://localhost:5173/task'); | ||
await page.screenshot({ path: `test-results/screenshots/screenshot-${Date.now()}.png` }); | ||
}); | ||
}); |