[Testbox] issue with testing w/ debugMode = true

Working on getting tests running. By default if I have my app set with debug = false all my tests run fine - including the ‘default’ integration test examples in _tests.specs.integration.MainTest.

If I change debug mode to true - all my tests pass except the integration tests:

function development(){ coldbox.customErrorTemplate = "/coldbox/system/includes/BugReport.cfm"; debugger = { debugMode = true };

Each test throws the following error:

testSessionEnd (28 ms) - Page /cbdebugger/includes/Debug.cfm [C:\inetpub\wwwroot\railo\cbdebugger\includes\Debug.cfm] not found

I was hoping to be able to leave debugMode=true on in my config and override by calling ?debugMode=false in the URL but that doesn’t seem to work - the integration tests still fail. Not sure if this is a bug or something I have configured incorrectly?

Thanks!
Jim

Are you using the debugger module?

Luis Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com
P/F: 1-888-557-8057
Direct: (909) 248-3408

ColdBox Platform: http://www.coldbox.org

ContentBox Platform: http://www.gocontentbox.org
Linked In: http://www.linkedin.com/pub/3/731/483

Social: twitter.com/ortussolutions | twitter.com/coldbox | twitter.com/lmajano | twitter.com/gocontentbox

Yep - cbdebugger - installed via CommandBox.

Jim

Yep, the cbdebugger will interfere with testing, best to remove it for now.

Luis Majano
CEO
Ortus Solutions, Corp
www.ortussolutions.com
P/F: 1-888-557-8057
Direct: (909) 248-3408

ColdBox Platform: http://www.coldbox.org

ContentBox Platform: http://www.gocontentbox.org
Linked In: http://www.linkedin.com/pub/3/731/483

Social: twitter.com/ortussolutions | twitter.com/coldbox | twitter.com/lmajano | twitter.com/gocontentbox

Thanks for the confirmation Luis!

Jim