oneie
Version:
Build apps, websites, and AI agents in English. Zero-interaction setup for AI agents (Claude Code, Cursor, Windsurf). Download to your computer, run in the cloud, deploy to the edge. Open source and free forever.
26 lines (18 loc) • 503 B
Markdown
**Category:** testing
**Version:** 1.0.0
**Used By:** agent-quality
Runs end-to-end tests for user flows.
```typescript
test('user can create blog post', async () => {
await page.goto('/dashboard');
await page.click('[data-test="new-post"]');
await page.fill('[name="title"]', 'Test');
await page.click('[type="submit"]');
await expect(page).toHaveURL('/blog/test');
});
```
- **1.0.0** (2025-10-18): Initial implementation