https://github.com/elaichenkov/cy-copy-prompt
https://github.com/elaichenkov/cy-copy-prompt
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/elaichenkov/cy-copy-prompt
- Owner: elaichenkov
- License: mit
- Created: 2025-05-23T01:31:05.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-15T08:25:48.000Z (9 months ago)
- Last Synced: 2025-09-18T21:56:40.805Z (9 months ago)
- Language: JavaScript
- Homepage: https://dev.to/elaichenkov/cypress-copy-debug-prompt-4hnb
- Size: 944 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cy-copy-prompt

Cypress copy prompt plugin for helping to debug tests. Inspired by Playwright's copy prompt feature.
## Installation
```bash
npm install --save-dev cy-copy-prompt
```
## Usage
You need to import the plugin in your Cypress `e2e` file (usually `cypress/support/e2e.js`):
```typescript
import 'cy-copy-prompt';
```
or
```javascript
require('cy-copy-prompt');
```
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Author
[Yevhen Laichenkov](elaichenkov@gmail.com)