8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
use: {
|
|
// Enable trace collection
|
|
trace: 'on',
|
|
},
|
|
}); |