Skip to content

Commit cf6755f

Browse files
author
Bernabe Gonzalez
committed
rename test to test path
1 parent 0e01c57 commit cf6755f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/containers/HomePage/Executions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const Executions = ({ executions }) => {
99

1010
return (
1111
<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>
1313
<Separator />
1414
<div>
1515
{sortedExecutions.map(props =>

src/containers/HomePage/RunTest.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const RunTest = ({ onSuccess }) => {
1616
setUrlError("URL can't be empty ");
1717
}
1818
if (!test) {
19-
setTestError("Test can't be empty ");
19+
setTestError("Test path can't be empty ");
2020
}
2121
if (!url || !test) {
2222
return;
@@ -55,8 +55,8 @@ const RunTest = ({ onSuccess }) => {
5555
/>
5656
</FormGroup>
5757
<FormGroup
58-
help="Try: simple-example"
59-
label="Test Name"
58+
help="Try: __tests__/simple-example"
59+
label="Test Path"
6060
name="test"
6161
error={testError}
6262
touched={!!testError}

0 commit comments

Comments
 (0)