Skip to content

Commit

Permalink
Merge pull request #93 from replayio-public/0711-add-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-tey committed Aug 9, 2023
2 parents 8a0973e + 6cc2c40 commit fcc9dd3
Show file tree
Hide file tree
Showing 9 changed files with 1,750 additions and 1,231 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Playwright Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
run: pnpm exec playwright install --with-deps
- run: pnpm build
- name: Run Playwright tests
run: pnpm exec playwright test --project replay-chromium --reporter=@replayio/playwright/reporter,line
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Upload replays
if: ${{ always() }}
uses: replayio/action-upload@v0.5.1
with:
public: true
# TODO: Replace with a secret before merging
# api-key: ${{ secrets.RECORD_REPLAY_API_KEY }}
api-key: rwk_it0M3XJ0w4NYjEZtc72dd3BHI4pQEoChgy5u1sLZUs9
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ next-env.d.ts

# vscode
.vscode
/test-results/
/playwright-report/
/playwright/.cache/
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ const nextConfig = {
},
];
},
productionBrowserSourceMaps: true,
};

module.exports = nextConfig;
5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:replay": "playwright test --project replay-chromium --reporter=@replayio/playwright/reporter,line",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\"",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\"",
"lint": "next lint"
Expand Down Expand Up @@ -55,6 +58,8 @@
"use-debounce": "^9.0.4"
},
"devDependencies": {
"@playwright/test": "^1.36.0",
"@replayio/playwright": "^1.0.4",
"@tailwindcss/typography": "^0.5.9",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.25",
Expand Down
53 changes: 53 additions & 0 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { defineConfig, devices } from '@playwright/test';
import { devices as replayDevices } from "@replayio/playwright";


/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();

/**
* See https://playwright.dev/docs/test-configuration.
*/
export default defineConfig({
testDir: './tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
// baseURL: 'http://127.0.0.1:3000',

/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on-first-retry',
},

/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] },
},
{
name: "replay-chromium",
use: { ...replayDevices["Replay Chromium"] },
},
],

/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run start',
url: 'http://localhost:3000',
reuseExistingServer: !process.env.CI,
},
});

1 comment on commit fcc9dd3

@vercel
Copy link

@vercel vercel bot commented on fcc9dd3 Aug 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.