Create a New Test
1
Go to Testing > Tests
Navigate to the Testing section and click “Tests”
2
Click New Test
Click the “Add Test” button
3
Select Repository
Choose which repository this test is for
4
Choose Test Type
Select Unit, Integration, or E2E
5
Describe Your Test
Enter a prompt describing what to test
6
Generate & Save
Click Generate, review the code, then Save
Writing Good Prompts
The better your prompt, the better the generated test.Unit Test Prompts
Be specific about the function and expected behavior:Integration Test Prompts
Specify the endpoint, inputs, and expected outputs:E2E Test Prompts
Describe the user journey step by step:Test Organization
Tests are organized into Suites (folders) within each repository.- Add it to an existing suite
- Create a new suite
Choosing a Framework
For unit and integration tests, select your test framework:| Language | Frameworks |
|---|---|
| JavaScript/TypeScript | vitest, jest, mocha |
| Python | pytest, unittest |
| Go | go test |
| Rust | cargo test |
package.json, pyproject.toml, etc. You can override if needed.
Choosing Platforms (E2E Only)
For E2E tests, select which browsers to run on:- Chrome - Most common, fastest
- Firefox - Good for cross-browser testing
- Safari - Required for macOS/iOS compatibility
- Mobile - Mobile viewport simulation
Import Existing Tests
Already have tests? Import them instead of generating new ones:1
Click Import tab
In the new test dialog, click “Import”
2
Select test file
Browse your repository and select an existing test file
3
Save
The test is added to your dashboard for tracking
Auto-Detect Tests
Let Paragon scan your repository and find all existing tests:1
Click Auto-Detect tab
In the new test dialog, click “Auto-Detect”
2
Run scan
Paragon analyzes your repository structure
3
Review results
See all detected test files and frameworks
4
Import selected
Choose which tests to add to the dashboard
Editing Tests
Click any test to edit it:- Update the test name or description
- Regenerate code with a new prompt
- Change platforms (E2E)
- Move to a different suite
Next Steps
Run Tests
Execute your tests and view results



