Skip to content

Commit

Permalink
pending step icon fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmpestano committed Jul 14, 2015
1 parent 3ea36fc commit 2c46673
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Cukedoctor converter is the basis for the above projects, it generates asciidoc

Cukedoctor is available at https://bintray.com/rmpestano/cukedoctor[Bintray] and at http://search.maven.org/#search%7Cga%7C1%7Ccukedoctor[Maven central^].

*Snapshots* are available at https://oss.sonatype.org/content/repositories/snapshots/com/github/cukedoctor/[Maven central^] and published on each _successful_ commit.
*Snapshots* are available at https://oss.sonatype.org/content/repositories/snapshots/com/github/cukedoctor/[maven central^] and published on each _successful_ commit&build on travis.

You can use snapshots by adding the following snippets in pom.xml:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public static String getStatusIcon(Status status){
return "icon:thumbs-down[role=\"purple\",title=\"Skipped\"]";
}
case pending: {
return "icon:thumbs-down[role=\"orange\",title=\"Pending\"]";
return "icon:thumbs-down[role=\"maroon\",title=\"Pending\"]";
}
case undefined: {
return "icon:thumbs-down[role=\"yellow\",title=\"Undefined\"]";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ public void shouldRenderFeatureStepsWithOneScenarioWithMultipleStep(){
"When::" + newLine() +
"failing step icon:thumbs-down[role=\"red\",title=\"Failed\"] [small right]#(000ms)#" + newLine() +
"When::" + newLine() +
"pending step icon:thumbs-down[role=\"orange\",title=\"Pending\"] [small right]#(000ms)#" + newLine() +
"pending step icon:thumbs-down[role=\"maroon\",title=\"Pending\"] [small right]#(000ms)#" + newLine() +
"When::" + newLine() +
"missing step icon:thumbs-down[role=\"blue\",title=\"Missing\"] [small right]#(000ms)#" + newLine() +
"When::" + newLine() +
Expand Down
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@
</profiles>



<distributionManagement>
<snapshotRepository>
<id>snapshots</id>
Expand All @@ -278,5 +277,4 @@
</distributionManagement>



</project>

0 comments on commit 2c46673

Please sign in to comment.