chore: absolute dotenv path import (#123)

This commit is contained in:
Max Schmitt 2024-06-04 20:07:54 +02:00 коммит произвёл GitHub
Родитель 6182358918
Коммит 3b986a1faf
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -5,7 +5,7 @@ const { defineConfig, devices } = require('@playwright/test');
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
// require('dotenv').config({ path: path.resolve(__dirname, '.env') });
/**
* @see https://playwright.dev/docs/test-configuration

Просмотреть файл

@ -4,7 +4,8 @@ import { defineConfig, devices } from '@playwright/test';
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
// import dotenv from 'dotenv';
// dotenv.config({ path: path.resolve(__dirname, '.env') });
/**
* See https://playwright.dev/docs/test-configuration.