ca certs fixes and tests (#5429)

Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
This commit is contained in:
lohit
2025-09-07 23:06:44 +05:30
committed by GitHub
parent 1bc7a1f655
commit 3c656270b3
57 changed files with 1853 additions and 50 deletions

View File

@@ -1,4 +1,4 @@
import { defineConfig, devices } from '@playwright/test';
import { defineConfig } from '@playwright/test';
const reporter: any[] = [['list'], ['html']];
@@ -7,7 +7,6 @@ if (process.env.CI) {
}
export default defineConfig({
testDir: './tests',
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 1 : 0,
@@ -20,7 +19,15 @@ export default defineConfig({
projects: [
{
name: 'Bruno Electron App'
name: 'default',
testDir: './tests',
testIgnore: [
'ssl/**' // custom CA certificate tests require separate server setup and certificate generation
]
},
{
name: 'ssl',
testDir: './tests/ssl'
}
],