You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

111 lines
2.9 KiB

  1. import process from 'node:process'
  2. import { defineConfig, devices } from '@playwright/test'
  3. /**
  4. * Read environment variables from file.
  5. * https://github.com/motdotla/dotenv
  6. */
  7. // require('dotenv').config();
  8. /**
  9. * See https://playwright.dev/docs/test-configuration.
  10. */
  11. export default defineConfig({
  12. testDir: './e2e',
  13. /* Maximum time one test can run for. */
  14. timeout: 30 * 1000,
  15. expect: {
  16. /**
  17. * Maximum time expect() should wait for the condition to be met.
  18. * For example in `await expect(locator).toHaveText();`
  19. */
  20. timeout: 5000,
  21. },
  22. /* Fail the build on CI if you accidentally left test.only in the source code. */
  23. forbidOnly: !!process.env.CI,
  24. /* Retry on CI only */
  25. retries: process.env.CI ? 2 : 0,
  26. /* Opt out of parallel tests on CI. */
  27. workers: process.env.CI ? 1 : undefined,
  28. /* Reporter to use. See https://playwright.dev/docs/test-reporters */
  29. reporter: 'html',
  30. /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
  31. use: {
  32. /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
  33. actionTimeout: 0,
  34. /* Base URL to use in actions like `await page.goto('/')`. */
  35. baseURL: process.env.CI ? 'http://localhost:4173' : 'http://localhost:5173',
  36. /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
  37. trace: 'on-first-retry',
  38. /* Only on CI systems run the tests headless */
  39. headless: !!process.env.CI,
  40. },
  41. /* Configure projects for major browsers */
  42. projects: [
  43. {
  44. name: 'chromium',
  45. use: {
  46. ...devices['Desktop Chrome'],
  47. },
  48. },
  49. {
  50. name: 'firefox',
  51. use: {
  52. ...devices['Desktop Firefox'],
  53. },
  54. },
  55. {
  56. name: 'webkit',
  57. use: {
  58. ...devices['Desktop Safari'],
  59. },
  60. },
  61. /* Test against mobile viewports. */
  62. // {
  63. // name: 'Mobile Chrome',
  64. // use: {
  65. // ...devices['Pixel 5'],
  66. // },
  67. // },
  68. // {
  69. // name: 'Mobile Safari',
  70. // use: {
  71. // ...devices['iPhone 12'],
  72. // },
  73. // },
  74. /* Test against branded browsers. */
  75. // {
  76. // name: 'Microsoft Edge',
  77. // use: {
  78. // channel: 'msedge',
  79. // },
  80. // },
  81. // {
  82. // name: 'Google Chrome',
  83. // use: {
  84. // channel: 'chrome',
  85. // },
  86. // },
  87. ],
  88. /* Folder for test artifacts such as screenshots, videos, traces, etc. */
  89. // outputDir: 'test-results/',
  90. /* Run your local dev server before starting the tests */
  91. webServer: {
  92. /**
  93. * Use the dev server by default for faster feedback loop.
  94. * Use the preview server on CI for more realistic testing.
  95. * Playwright will re-use the local server if there is already a dev-server running.
  96. */
  97. command: process.env.CI ? 'npm run preview' : 'npm run dev',
  98. port: process.env.CI ? 4173 : 5173,
  99. reuseExistingServer: !process.env.CI,
  100. },
  101. })