You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 28, 2023. It is now read-only.
I'm using jasmine where tests are named/identified based on the test description plus each containing describe block description. For example:
describe('dockDirective',function(){describe('click-handler',function(){it('should set window active', ...)});});
defines the test "dockDirective click-handler should set window active".
But, when I run the test in TeamCity with Karma, the test is identified as "should set window active (dockDirective click-handler.PhantomJS 1.9.0 (Windows 7))". The information (plus extra) is in there, but in the wrong order. It's hard to read.
I ran the same command outside of TeamCity and see that the raw output is like this:
I'm using jasmine where tests are named/identified based on the test description plus each containing describe block description. For example:
defines the test "dockDirective click-handler should set window active".
But, when I run the test in TeamCity with Karma, the test is identified as "should set window active (dockDirective click-handler.PhantomJS 1.9.0 (Windows 7))". The information (plus extra) is in there, but in the wrong order. It's hard to read.
I ran the same command outside of TeamCity and see that the raw output is like this:
Seems that to make it look right in TC, the output should include the suite text in each test name like this: