BlinqIO Project Structure
When you perform actions such as recording tests, generating scenarios, running tests, or opening your project in Visual Studio Code, a copy of your project is downloaded to your local system.
A BlinqIO project contains the following files and directories:
Environments: Contains JSON files representing the environments in your project. Example:
prod.json
//Example: prod.json { "name": "prod", "baseUrl": "https://www.shop-blinq.io" }
Features: Contains your project's automation code (
.mjs
) and any Gherkin feature files.node_modules: Contains Node.js dependencies for your project.
logs: Stores logs related to previous test runs and sessions.
reports: Contains metadata and screenshots for generated test reports.
runs: Stores metadata related to previous test runs.
ai_config.json: Stores project configurations, such as
popupHandlers
andisNetworkIdle
options.package.json: Specifies Node.js dependencies for your project.