Skip to content

Commit

Permalink
Merge pull request #152 from Ortus-Solutions/updateTestBrowserToInclu…
Browse files Browse the repository at this point in the history
…deRunners

Add lists of runners to Browser Page
  • Loading branch information
lmajano authored Nov 16, 2023
2 parents a32b9a4 + 61352e0 commit 8dc2abc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test-browser/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,21 @@
</div>
</div>
<!--- Runners --->
<div class="row">
<div class="col-md-12 mb-4">
<h2>Availble Test Runners: </h2>
<p>
Below is a listing of the runners matching the "runner*.cfm" pattern.
</p>
<cfset runners = directoryList( expandPath( "./" ), false, "query", "runner*.cfm" )>
<cfoutput query="runners">
<a href="#runners.name#" target="_blank" class="btn btn-secondary btn-sm my-1 mx-1">#runners.name#</a>
</cfoutput>
</div>
</div>
<!--- Listing --->
<div class="row">
<div class="col-md-12">
Expand Down

0 comments on commit 8dc2abc

Please sign in to comment.