UNPKG

@interopio/desktop-cli

Version:

CLI tool for setting up, building and packaging io.Connect Desktop projects

32 lines (21 loc) 697 B
# Auto Tests Template This template adds automated testing capabilities to your io.Connect Desktop project. ## Included Files - `tests/basic.test.js` - Basic test structure using Playwright - `playwright.config.js` - Playwright configuration file ## Setup Instructions After applying this template, you'll need to: 1. Install Playwright dependencies: ```bash npm install @playwright/test ``` 2. Install browsers: ```bash npx playwright install ``` 3. Run tests: ```bash npx playwright test ``` ## Test Structure The template provides a basic test structure that you can extend based on your application's specific testing needs.