{"id":28751426,"url":"https://github.com/qualityshepherd/tappr","last_synced_at":"2026-04-24T21:31:08.249Z","repository":{"id":297980809,"uuid":"998474629","full_name":"qualityshepherd/tappr","owner":"qualityshepherd","description":"Minimal E2E test runner using Tape and Puppeteer — easy to grok, easy to extend, hard to outgrow.","archived":false,"fork":false,"pushed_at":"2025-06-10T19:14:43.000Z","size":37,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T23:01:20.219Z","etag":null,"topics":["e2e","puppeteer","tape","test"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/qualityshepherd.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}},"created_at":"2025-06-08T17:26:33.000Z","updated_at":"2025-06-13T18:31:11.000Z","dependencies_parsed_at":"2025-06-08T18:45:23.064Z","dependency_job_id":null,"html_url":"https://github.com/qualityshepherd/tappr","commit_stats":null,"previous_names":["qualityshepherd/tappr"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qualityshepherd/tappr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualityshepherd%2Ftappr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualityshepherd%2Ftappr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualityshepherd%2Ftappr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualityshepherd%2Ftappr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qualityshepherd","download_url":"https://codeload.github.com/qualityshepherd/tappr/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualityshepherd%2Ftappr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32241522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T13:21:15.438Z","status":"ssl_error","status_checked_at":"2026-04-24T13:21:15.005Z","response_time":64,"last_error":"SSL_read: 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","puppeteer","tape","test"],"created_at":"2025-06-16T23:00:12.817Z","updated_at":"2026-04-24T21:31:08.232Z","avatar_url":"https://github.com/qualityshepherd.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Run Tests](https://github.com/qualityshepherd/tappr/actions/workflows/run_tests.yml/badge.svg)](https://github.com/qualityshepherd/tappr/actions/workflows/run_tests.yml)\n# tappr\n\nMinimal E2E test runner using [Tape](https://github.com/substack/tape) and [Puppeteer](https://www.npmjs.com/package/puppeteer) — easy to grok, easy to extend, hard to outgrow.\n\n## Features\n- Powered by Tape and Puppeteer\n- Simple CLI: `tappr`\n- `--headless`, `--headed`, and `--slomo` flags\n- Glob-based test discovery — use any file structure\n- Minimal wrapper with clear, hackable test DSL (`t.goto`, `t.click`, etc.)\n- Easily extensible or swappable\n- No globals, no magic, no framework lock-in\n\n## Install\n- `npm install --save-dev tappr`\n\n## Usage\n- npx tappr [options] \u003cglob-patterns\u003e\n- eg. `npx tappr --headed --slomo=100 test/**/*.test.js`\n\n## CLI Options\n- `--headless` (default) run tests in headless mode\n- `--headed` run with visible browser\n- `--slomo=N` slow motion mode in ms per action (e.g. `--slomo=250`)\n\n## Extend\nThe easiest way is just throw `/lib/tappr.js` into your project and edit to taste. Then import it into your tests. Add functionality as you go!\n\nSlightly harder way: fork it and install into your project.\n\n## Writing Tests\nUse Tape (or another runner) as usual and wrap your test with tappr thusly:\n```javascript\nimport test from 'tape'\nimport { tappr } from '../lib/tappr.js'\n\nconst site = 'https://example.com'\n\ntest('homepage loads', tappr(async t =\u003e {\n  await t.goto(site)\n  t.ok(await t.exists('h1'))\n}))\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualityshepherd%2Ftappr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqualityshepherd%2Ftappr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualityshepherd%2Ftappr/lists"}