Closed
Conversation
* feat: copy country config changes * fix: sync countryconfig * chore: bump up toolkit * fix: birth validation * fix: v2-birth * fix: e2e v2-birth * fix: month in v2 search * feat: implement v2-application tests * fix: print test * chore: bump up toolkit * fix: rest api and navigation tests * fix:rejection reason * fix: add read event to birth * fix: add read action to tennis-club-membership * fix: bump up toolkit * fix: e2e: dont hardcode userId * fix: use id from token * fix: change the way assigned
* feat: add workqueue scopes * feat: add workqueues * update scopes to use new syntax * feat: add assigned-to-you query * fix: add icons * fix: give workqueue scopes to FA * fix: update queries * chore bump up toolkit * chore: bump up toolkit * chore: update toolkit and fix queries * fix: align with farajaland * chore: bump up toolkit
This reverts commit 4e8286c.
Fix test which started failing after workqueue changes
* init-release workflow will create the branch only * Correction made , some corner cases handeled
Update Farajaland from develop
* Add signature in assests and testcases for new user creation as registrar * chore: clean up * chore: use more specific selectors --------- Co-authored-by: Tameem Bin Haider <tameem.haider@dsinnovators.com>
Since file is passed as-is, process.env is never invoked and client crashes
…encrvs-farajaland into fix/e2e/adv-search-7
fix: v2-advanced-search/7-search-birth-event-declaration-stauts.spec.ts
advanced search birth child event e2e added
fix: blur text input after fill
fix: blur after filling with data-testid
…into merge-v1-8-0-to-develop
Merge v1.8.0 to develop
… during Playwright tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Overview
This pull request adds support for configuring Playwright's HTTPS error handling via the
IGNORE_CAenvironment variable. WhenIGNORE_CA=1is set, Playwright will ignore HTTPS errors such as untrusted, self-signed, or staging CA certificates. This improves test stability when running in environments that use certificates not trusted by default (e.g., Let's Encrypt staging, test CA, or self-signed certs).Details
ignoreHTTPSErrorsis now set based on the value ofprocess.env.IGNORE_CA.IGNORE_CA=1, Playwright will skip certificate trust errors during browser tests.Motivation & Context
Usage
Set the environment variable
IGNORE_CA=1in your CI job or local environment to enable this behavior:Or via the command line:
IGNORE_CA=1 npx playwright testExample Change
Additional Information