react-native-camera/examples/tests/App.js
Kevin Sullivan cb79f53adc
feat(test): add on-device tests (#2792)
* test: add on-device tests

* test: add photos/videos tests
2020-04-14 20:02:17 -03:00

22 lines
374 B
JavaScript

/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import {SafeAreaView} from 'react-native';
import TestSuite from 'react-native-tests';
import {tests} from './tests';
const App = () => (
<SafeAreaView>
<TestSuite tests={tests} />
</SafeAreaView>
);
export default App;