chore: use import instead of require in generated JS examples (#131)

This commit is contained in:
Max Schmitt 2024-10-23 11:53:22 +02:00 коммит произвёл GitHub
Родитель 4cf6c05e28
Коммит 34403ed486
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
4 изменённых файлов: 8 добавлений и 6 удалений

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

@ -1,5 +1,5 @@
// @ts-check
const { test, expect } = require('@playwright/test');
import { test, expect } from '@playwright/test';
test.beforeEach(async ({ page }) => {
await page.goto('https://demo.playwright.dev/todomvc');

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

@ -1,5 +1,5 @@
// @ts-check
const { test, expect } = require('@playwright/test');
import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('https://playwright.dev/');

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

@ -1,5 +1,5 @@
// @ts-check
const { defineConfig, devices } = require('{{ctPackageName}}');
import { defineConfig, devices } from '{{ctPackageName}}';
/**
* @see https://playwright.dev/docs/test-configuration

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

@ -1,16 +1,18 @@
// @ts-check
const { defineConfig, devices } = require('@playwright/test');
import { defineConfig, devices } from '@playwright/test';
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config({ path: path.resolve(__dirname, '.env') });
// import dotenv from 'dotenv';
// import path from 'path';
// dotenv.config({ path: path.resolve(__dirname, '.env') });
/**
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig({
export default defineConfig({
testDir: './{{testDir}}',
/* Run tests in files in parallel */
fullyParallel: true,