| 123456789101112131415 |
- // playwright.config.js
- require('dotenv').config();
- const { defineConfig } = require('@playwright/test');
- module.exports = defineConfig({
- projects: [
- {
- name: 'chromium',
- use: {
- browserName: 'chromium',
- baseURL: process.env.BASE_URL || 'http://localhost:3000'
- },
- },
- ],
- });
|