Pixie Labs

Pixie Labs is a leading London-based digital product studio with deep software development expertise in Ruby on Rails, React and React Native. We design and build high-impact apps, platforms and digital tools. Let us help you make your digital product a success.

Follow publication

Cavy — better test reporting for React Native integration tests

Abigail McPhillips
Pixie Labs
Published in
3 min readJun 4, 2019

--

What’s new?

import React, { Component } from 'react';
import { AppRegistry } from 'react-native';
import App from './app';
import { Tester, TestHookStore } from 'cavy';
import IntegrationSpecs from './specs/IntegrationSpecs';

const testHookStore = new TestHookStore();
const myReporterFunction = (report) => {
// do something with the report here.
}
class TestableApp extends Component {
render() {
return (
<Tester specs={IntegrationSpecs}
store={testHookStore}
reporter={myReporterFunction}>
<App/>
</Tester>
);
}
}

AppRegistry.registerComponent('App', () => TestableApp);
{
duration: 5.2, // time taken for tests to run (secs)
errorCount: 1, // number of failing tests
results: [
{
message: "Test suite description: First test description",
passed: 1 // test passed
},
{
message: "Test suite description: Second test description",
passed: 0 // test failed
}
]
}

Using Cavy Native Reporter

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Pixie Labs

Pixie Labs is a leading London-based digital product studio with deep software development expertise in Ruby on Rails, React and React Native. We design and build high-impact apps, platforms and digital tools. Let us help you make your digital product a success.

Responses (1)

Write a response