{"id":45382790,"url":"https://github.com/drownek/paper-e2e-test","last_synced_at":"2026-02-21T17:00:42.998Z","repository":{"id":334288459,"uuid":"1140736733","full_name":"Drownek/paper-e2e-test","owner":"Drownek","description":"End-to-end testing framework for Paper/Spigot plugins with TS/JS support","archived":false,"fork":false,"pushed_at":"2026-02-19T20:58:27.000Z","size":309,"stargazers_count":0,"open_issues_count":8,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-20T16:11:35.636Z","etag":null,"topics":["e2e","minecraft","mineflayer","paper","spigot","testing"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Drownek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-23T17:31:57.000Z","updated_at":"2026-02-19T17:41:40.000Z","dependencies_parsed_at":"2026-02-21T17:00:31.883Z","dependency_job_id":null,"html_url":"https://github.com/Drownek/paper-e2e-test","commit_stats":null,"previous_names":["drownek/paper-e2e-test"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Drownek/paper-e2e-test","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Drownek%2Fpaper-e2e-test","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Drownek%2Fpaper-e2e-test/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Drownek%2Fpaper-e2e-test/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Drownek%2Fpaper-e2e-test/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Drownek","download_url":"https://codeload.github.com/Drownek/paper-e2e-test/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Drownek%2Fpaper-e2e-test/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29688216,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T15:51:39.154Z","status":"ssl_error","status_checked_at":"2026-02-21T15:49:03.425Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["e2e","minecraft","mineflayer","paper","spigot","testing"],"created_at":"2026-02-21T17:00:19.687Z","updated_at":"2026-02-21T17:00:42.990Z","avatar_url":"https://github.com/Drownek.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Paper E2E Test Framework\n\nEnd-to-end testing framework for Paper/Spigot Minecraft plugins with support for both JavaScript and TypeScript.\n\n## Features\n\n* 🚀 **Fast \u0026 Simple Setup** – Start testing in minutes with automated server lifecycle management and Paper server downloads.\n* 🎮 **Realistic Bot Testing** – Powered by Mineflayer for authentic player interaction.\n* 🎭 **Playwright-inspired API** – Familiar patterns using live handles and locators for intuitive scripting.\n* 🧪 **Type-Safe** – Native JavaScript and TypeScript support with full type safety.\n* 🔄 **Automatic Retries** – Built-in retry logic to eliminate flaky tests and ensure stability.\n* 📊 **Rich Assertions** – Custom matchers specifically designed for Minecraft mechanics.\n* 🔧 **Gradle Integration** – Run your entire suite with a single command.\n\n## Quick Start\n\n### 1. Add Gradle Plugin\n\n```kotlin\nplugins {\n    id(\"io.github.drownek.paper-e2e\") version \"1.1.0\"\n}\n\ne2e {\n    minecraftVersion.set(\"1.19.4\")\n    runDir.set(\"run\")\n    testsDir.set(file(\"src/test/e2e\"))\n    autoDownloadServer.set(true)\n    acceptEula.set(true)\n}\n```\n\n### 2. Setup Tests\n\nCreate `src/test/e2e/package.json`:\n```json\n{\n  \"type\": \"module\",\n  \"dependencies\": {\n    \"@drownek/paper-e2e-runner\": \"^1.1.0\"\n  }\n}\n```\n\nRun `npm install` in `src/test/e2e`.\n\n### 3. Write Your First Test\n\nCreate `src/test/e2e/my-test.spec.js`:\n```javascript\nimport { test, expect } from '@drownek/paper-e2e-runner';\n\ntest('player receives welcome message', async ({ player }) =\u003e {\n  player.chat('/help');\n  await expect(player).toHaveReceivedMessage('Available commands');\n});\n```\n\n### 4. Run Tests\n\n```bash\n./gradlew testE2E\n```\n\n## Documentation\n\nSee the [GitHub Wiki](../../wiki) for comprehensive guides:\n\n- [Getting Started](../../wiki/Getting-Started) - Installation and setup\n- [Writing Tests](../../wiki/Writing-Tests) - Test examples and patterns\n- [Matchers Reference](../../wiki/Matchers-Reference) - All available assertions\n- [GUI Testing](../../wiki/GUI-Testing) - Testing inventory GUIs\n- [TypeScript Support](../../wiki/TypeScript-Support) - Using TypeScript\n- [Configuration](../../wiki/Configuration) - Gradle plugin options\n- [Troubleshooting](../../wiki/Troubleshooting) - Common issues\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrownek%2Fpaper-e2e-test","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrownek%2Fpaper-e2e-test","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrownek%2Fpaper-e2e-test/lists"}