{"id":15102658,"url":"https://github.com/touwinho/gad-playwright","last_synced_at":"2026-02-09T10:33:31.687Z","repository":{"id":254980873,"uuid":"842528003","full_name":"touwinho/gad-playwright","owner":"touwinho","description":"A comprehensive suite of end-to-end (E2E) tests for the GAD application, ensuring robust validation of its user interface and functionality.","archived":false,"fork":false,"pushed_at":"2025-01-27T11:45:07.000Z","size":97,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-22T22:37:01.304Z","etag":null,"topics":["playwright","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/touwinho.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-08-14T14:32:19.000Z","updated_at":"2025-01-27T11:45:11.000Z","dependencies_parsed_at":null,"dependency_job_id":"39d89fa3-b5a9-46b8-9047-4e75542c2c1e","html_url":"https://github.com/touwinho/gad-playwright","commit_stats":{"total_commits":26,"total_committers":2,"mean_commits":13.0,"dds":"0.038461538461538436","last_synced_commit":"14e15af73644bef5009ace1208ca41a5c78d7399"},"previous_names":["touwinho/gad-playwright"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/touwinho/gad-playwright","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touwinho%2Fgad-playwright","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touwinho%2Fgad-playwright/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touwinho%2Fgad-playwright/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touwinho%2Fgad-playwright/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/touwinho","download_url":"https://codeload.github.com/touwinho/gad-playwright/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/touwinho%2Fgad-playwright/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29261956,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T04:11:57.159Z","status":"ssl_error","status_checked_at":"2026-02-09T04:11:56.117Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["playwright","typescript"],"created_at":"2024-09-25T19:04:01.908Z","updated_at":"2026-02-09T10:33:31.669Z","avatar_url":"https://github.com/touwinho.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Overview\n\nThis repository contains end-to-end (E2E) tests for the GAD application. The tests ensure the proper functionality of the application's user interface and workflows.\n\n### Table of Contents\n\n- [Overview](#overview)\n- [Project Link](#project-link)\n- [Prerequisites](#prerequisites)\n- [Setup Instructions](#setup-instructions)\n- [Available Commands](#available-commands)\n- [Decision Log](./DECISIONLOG.md)\n\n## Project Link\n\nAccess the GAD application repository here: [GAD GUI \u0026 API Demo](https://github.com/jaktestowac/gad-gui-api-demo). This repository is maintained by [jaktestowac.pl](https://github.com/jaktestowac).\n\n## Prerequisites\n\nEnsure that the GAD application is set up and running locally before proceeding with the tests.\n\n## Setup Instructions\n\n1. **Clone the GAD Repository**\n   Clone the GAD application repository from the [link](https://github.com/jaktestowac/gad-gui-api-demo). Install the necessary dependencies and follow the instructions to run the application.\n\n2. **Clone This Repository**\n   Clone this test repository to your local machine.\n\n3. **Install right Node.js version** Using nvm, proper Node version will be applied.\n\n   ```\n   nvm i\n   ```\n\n4. **Install Dependencies**\n   Navigate to the test project directory and install the dependencies by running:\n\n   ```\n   npm install\n   ```\n\n5. **Install Browsers**\n   To run tests using Playwright, you need to install the required browsers. This command will download and set up the necessary browser binaries for testing:\n\n   ```\n   npx playwright install\n   ```\n\n6. **Set Up GAD Application**\n   Visit the GAD application running on `localhost:3000` and create an account. This step is essential for running the tests.\n\n7. **Configure Environment Variables**\n   Create a `.env` file in the root directory of the test project. You can use the `.env.example` file as a template to set up the necessary environment variables.\n\n8. **Run the Tests**\n   Execute the tests using Playwright with the following command:\n\n   ```\n   npx playwright test\n   ```\n\n## Available Commands\n\n### Install Dependencies\n\n```\nnpm install\n```\n\n### Install Browsers\n\n```\nnpx playwright install\n```\n\n### Run Tests (Headless Mode)\n\n```\nnpm run test\n```\n\n### Run Tests (With Browser GUI)\n\n```\nnpm run test:headed\n```\n\n### Run API Tests\n\n```\nnpm run test:api\n```\n\n### Run GUI Tests (Headless Mode)\n\n```\nnpm run test:gui\n```\n\n### Run GUI Tests (With Browser GUI)\n\n```\nnpm run test:gui-headed\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouwinho%2Fgad-playwright","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftouwinho%2Fgad-playwright","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftouwinho%2Fgad-playwright/lists"}