playwright.config.ts 263 B

12345678910111213
  1. // playwright.config.js
  2. const { defineConfig } = require('@playwright/test');
  3. module.exports = defineConfig({
  4. projects: [
  5. {
  6. name: 'chromium',
  7. use: {
  8. browserName: 'chromium',
  9. },
  10. },
  11. ],
  12. });