https://github.com/wlsf82/cygpt
cyGPT is a project based on Cypress, aiming to provide a set of automated tests for various types of applications. The tests were developed by an OpenAI language model, specifically the GPT-3.5 architecture, trained to generate human-like natural language.
https://github.com/wlsf82/cygpt
chatgpt cypress testing
Last synced: about 2 months ago
JSON representation
cyGPT is a project based on Cypress, aiming to provide a set of automated tests for various types of applications. The tests were developed by an OpenAI language model, specifically the GPT-3.5 architecture, trained to generate human-like natural language.
- Host: GitHub
- URL: https://github.com/wlsf82/cygpt
- Owner: wlsf82
- License: mit
- Created: 2023-04-15T00:06:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-15T00:07:38.000Z (about 3 years ago)
- Last Synced: 2025-02-06T05:42:27.879Z (over 1 year ago)
- Topics: chatgpt, cypress, testing
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cyGPT
cyGPT is a project based on Cypress, aiming to provide a set of automated tests for various types of applications. The tests were developed by an OpenAI language model, specifically the GPT-3.5 architecture, trained to generate human-like natural language.
## Pre-requirements
Before cloning and running the cyGPT project, you need to have the following tools installed:
- Git
- Node.js (version 14 or later)
- npm (version 6 or later)
## Installation
To install cyGPT, follow these steps:
- Clone the repository:
```bash
git clone https://github.com/your-username/cyGPT.git
```
- Install the dependencies:
```bash
cd cyGPT
npm install
```
## Tests
To run the tests in headless mode, use the following command:
```bash
npm test
```
To run the tests in interactive mode, use the following command:
```bash
npm run cy:open
```
Both commands will run all the tests located in the `cypress/e2e` directory. Make sure that the application you want to test is running and accessible before running the tests.
Note that cyGPT is a work in progress, and more tests will be added over time to cover different use cases and scenarios.