2016-02-18 19:59:34 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
2015-10-28 17:40:07 +00:00
|
|
|
|
2015-10-02 21:57:54 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-03-29 21:47:44 +00:00
|
|
|
import {
|
2015-10-15 18:34:24 +00:00
|
|
|
AppRegistry,
|
|
|
|
StyleSheet,
|
|
|
|
Text,
|
|
|
|
View,
|
2016-03-29 21:47:44 +00:00
|
|
|
} from 'react-native';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { runTests } from './tests';
|
2015-10-02 21:57:54 +00:00
|
|
|
|
2016-01-06 23:24:00 +00:00
|
|
|
class ReactTests extends React.Component {
|
2015-10-14 21:58:42 +00:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
2016-03-29 21:47:44 +00:00
|
|
|
<Text style={styles.button} onPress={runTests}>
|
2015-10-15 18:34:24 +00:00
|
|
|
Tap to Run Tests
|
2015-10-14 21:58:42 +00:00
|
|
|
</Text>
|
|
|
|
<Text style={styles.instructions}>
|
|
|
|
Press Cmd+R to reload,{'\n'}
|
|
|
|
Cmd+D or shake for dev menu
|
|
|
|
</Text>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
2016-01-06 23:24:00 +00:00
|
|
|
}
|
2015-10-02 21:57:54 +00:00
|
|
|
|
2016-03-29 21:47:44 +00:00
|
|
|
const styles = StyleSheet.create({
|
2015-10-15 18:34:24 +00:00
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: '#F5FCFF',
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
borderColor: '#cccccc',
|
|
|
|
borderRadius: 4,
|
|
|
|
borderWidth: 1,
|
|
|
|
fontSize: 20,
|
|
|
|
textAlign: 'center',
|
|
|
|
margin: 20,
|
|
|
|
padding: 10,
|
|
|
|
},
|
|
|
|
instructions: {
|
|
|
|
textAlign: 'center',
|
|
|
|
color: '#333333',
|
|
|
|
marginBottom: 5,
|
|
|
|
},
|
2015-10-02 21:57:54 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
AppRegistry.registerComponent('ReactTests', () => ReactTests);
|