import React, {Component} from 'react';
import {
StyleSheet,
SafeAreaView,
Text,
TouchableOpacity,
View,
Keyboard,
Button,
Platform,
} from 'react-native';
import Alerts from './examples/Alerts';
import Scrolling from './examples/Scrolling';
import Background from './examples/Background';
import Downloads from './examples/Downloads';
import Uploads from './examples/Uploads';
import Injection from './examples/Injection';
import LocalPageLoad from './examples/LocalPageLoad';
import WebGL from './examples/WebGL';
const TESTS = {
WebGL: {
title: 'WebGL',
testId: 'webgl',
description: 'WebGL for Windows',
render() {
return ;
},
},
Alerts: {
title: 'Alerts',
testId: 'alerts',
description: 'Alerts tests',
render() {
return ;
},
},
Scrolling: {
title: 'Scrolling',
testId: 'scrolling',
description: 'Scrolling event test',
render() {
return ;
},
},
Background: {
title: 'Background',
testId: 'background',
description: 'Background color test',
render() {
return ;
},
},
Downloads: {
title: 'Downloads',
testId: 'downloads',
description: 'File downloads test',
render() {
return ;
},
},
Uploads: {
title: 'Uploads',
testId: 'uploads',
description: 'Upload test',
render() {
return ;
},
},
Injection: {
title: 'Injection',
testId: 'injection',
description: 'Injection test',
render() {
return ;
},
},
PageLoad: {
title: 'LocalPageLoad',
testId: 'LocalPageLoad',
description: 'Local Page load test',
render() {
return ;
},
},
{Platform.OS === 'windows' && (