All Projects → pixielabs → Cavy

pixielabs / Cavy

Licence: mit
An integration test framework for React Native.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cavy

Automation Arsenal
Curated list of popular Java and Kotlin frameworks, libraries and tools related to software testing, quality assurance and adjacent processes automation.
Stars: ✭ 105 (-91.53%)
Mutual labels:  automation, integration-testing
Testing Workshop
A workshop for learning how to test JavaScript applications
Stars: ✭ 1,276 (+2.99%)
Mutual labels:  integration-testing, e2e-tests
Cli Prompts Test
Write e2e tests for CLI apps with ease
Stars: ✭ 17 (-98.63%)
Mutual labels:  integration-testing, e2e-tests
Javascript Testing Best Practices
📗🌐 🚢 Comprehensive and exhaustive JavaScript & Node.js testing best practices (August 2021)
Stars: ✭ 13,976 (+1028.01%)
Mutual labels:  integration-testing, e2e-tests
Dockertest
Write better integration tests! Dockertest helps you boot up ephermal docker images for your Go tests with minimal work.
Stars: ✭ 2,254 (+81.92%)
Mutual labels:  automation, integration-testing
Endly
End to end functional test and automation framework
Stars: ✭ 178 (-85.63%)
Mutual labels:  automation, integration-testing
Protractor Pretty Html Reporter
A jasmine reporter that produces an easy to use html report to analyze protractor test results.
Stars: ✭ 9 (-99.27%)
Mutual labels:  automation, e2e-tests
Xrautomatedtests
XRAutomatedTests is where you can find functional, graphics, performance, and other types of automated tests for your XR Unity development.
Stars: ✭ 77 (-93.79%)
Mutual labels:  automation
F5 Automation Labs
F5 Super-NetOps Programmability, Automation and DevOps Training Classes
Stars: ✭ 79 (-93.62%)
Mutual labels:  automation
Chaostoolkit
Chaos Engineering Experiments Automation & Orchestration
Stars: ✭ 1,204 (-2.82%)
Mutual labels:  automation
Tortipi
Tor based Raspberry π hotspot
Stars: ✭ 76 (-93.87%)
Mutual labels:  automation
Epv Api Scripts
These API scripts enable CyberArk users to automate privileged account management task like account creation, user management, and more.
Stars: ✭ 77 (-93.79%)
Mutual labels:  automation
Httparrot
HTTP Request & Response Server. An incomplete clone of http://httpbin.org
Stars: ✭ 79 (-93.62%)
Mutual labels:  integration-testing
Terraform
Terraform - Beginners | Intermediate | Advanced
Stars: ✭ 77 (-93.79%)
Mutual labels:  automation
Dockest
Docker + Jest integration testing for Node.js
Stars: ✭ 81 (-93.46%)
Mutual labels:  integration-testing
Ps4remoteplayinterceptor
A small .NET library to intercept and inject controls on PS4 Remote Play for Windows
Stars: ✭ 76 (-93.87%)
Mutual labels:  automation
Google It Automation
google it automation with python professional certificate
Stars: ✭ 81 (-93.46%)
Mutual labels:  automation
Openbsd Cookbooks
Setup environment in OpenBSD using Ansible playbook
Stars: ✭ 80 (-93.54%)
Mutual labels:  automation
Kafkawize
Kafkawize : A Self service Apache Kafka Topic Management tool/portal. A Web application which automates the process of creating and browsing Kafka topics, acls, schemas by introducing roles/authorizations to users of various teams of an org.
Stars: ✭ 79 (-93.62%)
Mutual labels:  automation
Sayn
Data processing and modelling framework for automating tasks (incl. Python & SQL transformations).
Stars: ✭ 79 (-93.62%)
Mutual labels:  automation

Cavy logo

Cavy

npm version CircleCI

Cavy is a cross-platform, integration test framework for React Native, by Pixie Labs.

Cavy tests allow you to programmatically interact with deeply nested components within your application. Write your tests in pure JavaScript and run them on both Android and iOS.

Cavy tests look like this:

export default function(spec) {
  spec.describe('A list of the employees', function() {
    spec.it('can be filtered by search input', async function() {
      await spec.exists('EmployeeList.JimCavy');
      await spec.fillIn('SearchBar.TextInput', 'Amy');
      await spec.press('Button.FilterSubmit');
      await spec.notExists('EmployeeList.JimCavy');
      await spec.exists('EmployeeList.AmyTaylor');
    });
  });
}

📋 Requirements

  • React Native >= 0.59
  • React >= 16.8.0

👶 Getting started

Get set up with Cavy by following our installation guide.

You might also want to check out some articles and watch talks about Cavy to find out a bit more before you write code.

If you need some inspiration, head over to Cavy's sample app, follow the instructions in the README, and see Cavy in action.

📘 Documentation

Full documentation and guides for Cavy can be found on our website.

🗺️ Development roadmap

Take a look at our public Pivotal Tracker to see what we're currently working on, and what features we plan to add to Cavy next.

💯 Contributing

When making changes to Cavy, it's useful to have the CavyTester app running in development for regression testing.

Follow the instructions it's own README on how to get the tester app running against a local version of the Cavy library.

Here you'll also find instructions on adding new test cases to ensure your functionality is fully tested. Please do this :)

Before contributing, please read the code of conduct.

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
  • Fork the project.
  • Start a feature/bugfix branch.
  • Commit and push until you are happy with your contribution.
  • Remember to submit a PR to DefinitelyTyped to update the type definitions if you've changed a function's inputs or outputs.
  • Remember to submit a PR to update the documentation if you've changed how something works.
  • Please try not to mess with the package.json, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so we can cherry-pick around it.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].