File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const Executions = ({ executions }) => {
9
9
10
10
return (
11
11
< div className = "container mc-p-5 mc-invert mc-background--color-light" >
12
- < h5 className = "mc-text-h5" > Executions</ h5 >
12
+ < h5 className = "mc-text-h5" > All Executions</ h5 >
13
13
< Separator />
14
14
< div >
15
15
{ sortedExecutions . map ( props =>
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const RunTest = ({ onSuccess }) => {
16
16
setUrlError ( "URL can't be empty " ) ;
17
17
}
18
18
if ( ! test ) {
19
- setTestError ( "Test can't be empty " ) ;
19
+ setTestError ( "Test path can't be empty " ) ;
20
20
}
21
21
if ( ! url || ! test ) {
22
22
return ;
@@ -55,8 +55,8 @@ const RunTest = ({ onSuccess }) => {
55
55
/>
56
56
</ FormGroup >
57
57
< FormGroup
58
- help = "Try: simple-example"
59
- label = "Test Name "
58
+ help = "Try: __tests__/ simple-example"
59
+ label = "Test Path "
60
60
name = "test"
61
61
error = { testError }
62
62
touched = { ! ! testError }
You can’t perform that action at this time.
0 commit comments