Skip to content

Commit b79b7a1

Browse files
author
Zaneta
committed
use specific config for CI
1 parent b3e81b6 commit b79b7a1

File tree

3 files changed

+81
-5
lines changed

3 files changed

+81
-5
lines changed

.github/workflows/playwright-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: npm ci
2828
- name: Run Playwright tests
29-
run: npx playwright test --grep @ci
29+
run: npx playwright test --config=playwright.ci.config.js --grep @ci
3030
env:
3131
ADMIN_PASSWORD: ${{ secrets.ADMIN_PASSWORD }}
3232
continue-on-error: true

playwright.ci.config.js

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
// @ts-check
2+
require("dotenv").config({ path: ".env.testing" });
3+
const { defineConfig, devices } = require("@playwright/test");
4+
const { BASE_URL } = process.env;
5+
6+
/**
7+
* @see https://playwright.dev/docs/test-configuration
8+
*/
9+
module.exports = defineConfig({
10+
testDir: "./src/examples",
11+
// testDir: './src/examples',
12+
/* Run tests in files in parallel */
13+
fullyParallel: false,
14+
/* Fail the build on CI if you accidentally left test.only in the source code. */
15+
forbidOnly: !!process.env.CI,
16+
/* Retry on CI only */
17+
retries: process.env.CI ? 1 : 0,
18+
/* Opt out of parallel tests on CI. */
19+
workers: process.env.CI ? 1 : undefined,
20+
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
21+
reporter: [["html", { outputFolder: "playwright-report", open: "never" }]],
22+
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
23+
use: {
24+
/* Base URL to use in actions like `await page.goto('/')`. */
25+
baseURL: BASE_URL,
26+
27+
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
28+
trace: "on-first-retry",
29+
},
30+
31+
/* Configure projects for major browsers */
32+
projects: [
33+
{
34+
name: "chromium",
35+
use: { ...devices["Desktop Chrome"] },
36+
},
37+
38+
// {
39+
// name: 'firefox',
40+
// use: { ...devices['Desktop Firefox'] },
41+
// },
42+
//
43+
// {
44+
// name: 'webkit',
45+
// use: { ...devices['Desktop Safari'] },
46+
// },
47+
48+
/* Test against mobile viewports. */
49+
// {
50+
// name: 'Mobile Chrome',
51+
// use: { ...devices['Pixel 5'] },
52+
// },
53+
// {
54+
// name: 'Mobile Safari',
55+
// use: { ...devices['iPhone 12'] },
56+
// },
57+
58+
/* Test against branded browsers. */
59+
// {
60+
// name: 'Microsoft Edge',
61+
// use: { ...devices['Desktop Edge'], channel: 'msedge' },
62+
// },
63+
// {
64+
// name: 'Google Chrome',
65+
// use: { ...devices['Desktop Chrome'], channel: 'chrome' },
66+
// },
67+
],
68+
69+
/* Run your local dev server before starting the tests */
70+
// webServer: {
71+
// command: 'npm run start',
72+
// url: 'http://127.0.0.1:3000',
73+
// reuseExistingServer: !process.env.CI,
74+
// },
75+
});

playwright.config.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
// @ts-check
2-
require('dotenv').config({ path: '.env.testing' });
2+
require('dotenv').config();
3+
34
const { defineConfig, devices } = require('@playwright/test');
45
const { BASE_URL } = process.env;
56

67
/**
78
* @see https://playwright.dev/docs/test-configuration
89
*/
910
module.exports = defineConfig({
10-
testDir: "./src/examples",
11+
testDir: './src/tests',
1112
// testDir: './src/examples',
1213
/* Run tests in files in parallel */
1314
fullyParallel: false,
@@ -18,7 +19,7 @@ module.exports = defineConfig({
1819
/* Opt out of parallel tests on CI. */
1920
workers: process.env.CI ? 1 : undefined,
2021
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
21-
reporter: [["html", { outputFolder: "playwright-report", open: "never" }]],
22+
reporter: 'html',
2223
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
2324
use: {
2425
/* Base URL to use in actions like `await page.goto('/')`. */
@@ -72,4 +73,4 @@ module.exports = defineConfig({
7273
// url: 'http://127.0.0.1:3000',
7374
// reuseExistingServer: !process.env.CI,
7475
// },
75-
});
76+
});

0 commit comments

Comments
 (0)