{"id":13725894,"url":"https://github.com/pixielabs/cavy","last_synced_at":"2025-05-13T12:51:19.668Z","repository":{"id":16684100,"uuid":"80435465","full_name":"pixielabs/cavy","owner":"pixielabs","description":"An integration test framework for React Native.","archived":false,"fork":false,"pushed_at":"2023-11-16T14:02:58.000Z","size":1566,"stargazers_count":1371,"open_issues_count":22,"forks_count":116,"subscribers_count":31,"default_branch":"master","last_synced_at":"2025-05-12T14:34:14.300Z","etag":null,"topics":["android","automation","e2e-testing","e2e-tests","hacktoberfest","integration-testing","ios","javascript","react","react-native","testing"],"latest_commit_sha":null,"homepage":"https://cavy.app","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pixielabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2017-01-30T15:45:30.000Z","updated_at":"2025-05-09T09:20:33.000Z","dependencies_parsed_at":"2024-02-04T16:19:52.163Z","dependency_job_id":"e8e6e031-a38e-4254-ae0d-2b9c6f4941b1","html_url":"https://github.com/pixielabs/cavy","commit_stats":{"total_commits":268,"total_committers":23,"mean_commits":"11.652173913043478","dds":0.5485074626865671,"last_synced_commit":"bd8209383f16e18dd0fad459009335c03d3de97b"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixielabs%2Fcavy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixielabs%2Fcavy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixielabs%2Fcavy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pixielabs%2Fcavy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pixielabs","download_url":"https://codeload.github.com/pixielabs/cavy/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253947460,"owners_count":21988939,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["android","automation","e2e-testing","e2e-tests","hacktoberfest","integration-testing","ios","javascript","react","react-native","testing"],"created_at":"2024-08-03T01:02:39.839Z","updated_at":"2025-05-13T12:51:19.639Z","avatar_url":"https://github.com/pixielabs.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src='https://cloud.githubusercontent.com/assets/126989/22546798/6cf18938-e936-11e6-933f-da756b9ee7b8.png' alt='Cavy logo' /\u003e\n\u003c/p\u003e\n\n# Cavy\n\n[![npm version](https://badge.fury.io/js/cavy.svg)](https://badge.fury.io/js/cavy) [![CircleCI](https://circleci.com/gh/pixielabs/cavy.svg?style=svg)](https://circleci.com/gh/pixielabs/cavy)\n\n**Cavy** is a cross-platform, integration test framework for React Native, by\n[Pixie Labs](http://pixielabs.io).\n\nCavy tests allow you to programmatically interact with deeply nested components\nwithin your application. Write your tests in pure JavaScript and run them on\nboth Android and iOS.\n\nCavy tests look like this:\n```js\nexport default function(spec) {\n  spec.describe('A list of the employees', function() {\n    spec.it('can be filtered by search input', async function() {\n      await spec.exists('EmployeeList.JimCavy');\n      await spec.fillIn('SearchBar.TextInput', 'Amy');\n      await spec.press('Button.FilterSubmit');\n      await spec.notExists('EmployeeList.JimCavy');\n      await spec.exists('EmployeeList.AmyTaylor');\n    });\n  });\n}\n```\n\n## 📋 Requirements\n- React Native \u003e= 0.59\n- React \u003e= 16.8.0\n\n## 👶 Getting started\nGet set up with Cavy by following our\n[installation guide](https://cavy.app/docs/getting-started/installing).\n\nYou might also want to\n[check out some articles and watch talks about Cavy](https://cavy.app/media) to\nfind out a bit more before you write code.\n\nIf you need some inspiration, head over to Cavy's\n[sample app](https://github.com/pixielabs/cavy-sample-app), follow the\ninstructions in the README, and see Cavy in action.\n\n## 📘 Documentation\nFull documentation and guides for Cavy can be found on our\n[website](https://cavy.app).\n\n## 🗺️ Development roadmap\nTake a look at our public\n[Pivotal Tracker](https://www.pivotaltracker.com/n/projects/2447582) to see what\nwe're currently working on, and what features we plan to add to Cavy next.\n\n## 💯 Contributing\nWhen making changes to Cavy, it's useful to have the\n[CavyTester](https://github.com/pixielabs/cavy-tester) app running in\ndevelopment for regression testing.\n\nFollow the instructions it's own README on how to get the tester app running\nagainst a local version of the Cavy library.\n\nHere you'll also find instructions on adding new test cases to ensure\nyour functionality is fully tested. Please do this :)\n\nBefore contributing, please read the [code of conduct](CODE_OF_CONDUCT.md).\n\n- Check out the latest master to make sure the feature hasn't been implemented\n  or the bug hasn't been fixed yet.\n- Check out the issue tracker to make sure someone already hasn't requested it\n  and/or contributed it.\n- Fork the project.\n- Start a feature/bugfix branch.\n- Commit and push until you are happy with your contribution.\n- Remember to\n  [submit a PR to DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cavy)\n  to update the type definitions if you've changed a function's inputs or outputs.\n- Remember to submit a PR to update\n  [the documentation](https://github.com/pixielabs/cavy-app) if you've changed\n  how something works.\n- Please try not to mess with the package.json, version, or history. If you\n  want to have your own version, or is otherwise necessary, that is fine, but\n  please isolate to its own commit so we can cherry-pick around it.\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixielabs%2Fcavy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpixielabs%2Fcavy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpixielabs%2Fcavy/lists"}