Last active
October 23, 2015 18:28
-
-
Save seancoyne/6f055c568220010cd4f4 to your computer and use it in GitHub Desktop.
example setup for testbox-runner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
component { | |
this.name = "myapp_api_test"; | |
this.mappings = { | |
"/testbox" = expandPath("/myapp/testbox"), | |
"/model" = expandPath("/myapp/api/model"), | |
"/tests" = expandPath("/myapp/api/tests"), | |
'/api' = expandPath('/myapp/api') | |
}; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfparam name="url.directory" default="/myapp/api/tests/spec"> | |
<cfparam name="url.recurse" default="true"> | |
<cflock name="myapp_api_tests" throwontimeout="true" timeout="10"> | |
<cfinclude template="/testbox/system/runners/HTMLRunner.cfm"> | |
</cflock> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment