mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-27 12:13:30 +00:00
* test(e2e): add Bombadil property exploration * fix(e2e): address Bombadil review feedback
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
import mockConfig from './playwright.config.mock';
|
|
|
|
export default defineConfig(mockConfig, {
|
|
testDir: 'bombadil',
|
|
testMatch: 'harness.spec.ts',
|
|
retries: 0,
|
|
reporter: [['list']],
|
|
});
|