mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-11 09:51:30 +00:00
ca certs fixes and tests (#5429)
Co-authored-by: Anoop M D <anoop.md1421@gmail.com>
This commit is contained in:
@@ -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'
|
||||
}
|
||||
],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user