add isPending test

This commit is contained in:
Geoffrey Goh
2015-12-18 01:05:59 -08:00
parent a09c980ddb
commit a3f5ea1a86
3 changed files with 52 additions and 1 deletions

View File

@@ -40,7 +40,7 @@ function createTestCaseComponent(displayName, description, setUp, runTest, passA
return (
<View style={{backgroundColor: "white", padding: 40}}>
<Text>
{this.state.done ? "Done" : "Testing..."}
{this.state.done ? "Test Passed!" : "Testing..."}
</Text>
</View>
);