Skip to content

Commit

Permalink
debugging messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lmajano committed Apr 21, 2022
1 parent 0972f3a commit 3c26cf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test-harness/tests/specs/DebuggerTest.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ component extends="coldbox.system.testing.BaseTestCase" appMapping="/root" {
event = "main.index",
renderResults = true
);
expect( timer.getTimers() ).notToBeEmpty();
expect( debuggerService.getProfilerStorage() ).notToBeEmpty();
expect( debuggerService.getTracers() ).notToBeEmpty();
expect( timer.getTimers() ).notToBeEmpty( "Timers should not be empty" );
expect( debuggerService.getProfilerStorage() ).notToBeEmpty( "profiler storage should not be empty" );
expect( debuggerService.getTracers() ).notToBeEmpty( "Tracers should not be empty" );
} );

debug( timer.getTimers() );
Expand Down

0 comments on commit 3c26cf7

Please sign in to comment.