Skip to content

Commit

Permalink
Ignore HTTPS issues in e2e tests (due to PR environments)
Browse files Browse the repository at this point in the history
  • Loading branch information
doshitan committed Jan 22, 2025
1 parent ade1cc6 commit 2156262
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion e2e/app-rails/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ export default defineConfig(deepMerge(
baseConfig,
{
use: {
baseURL: baseConfig.use.baseURL || "localhost:3100"
baseURL: baseConfig.use.baseURL || "localhost:3100",
ignoreHTTPSErrors: true, // Ignore SSL certificate errors
},
}
));

0 comments on commit 2156262

Please sign in to comment.