Is it possible to send a reason for Jasmine 2 specs skipped with xit or pending()?

大兔子大兔子 提交于 2019-12-22 01:41:02

问题


When we find a bug with one of our Protractor Jasmine2 specs, we usually want to skip the test until the bug has been resolved.

I know how to do this with xit or pending(), and JasmineReporters TerminalReporter is doing a nice job of color highlighting and listing pending specs.

However, the pending tests always report No reason given, which implies it is possible to give a reason for the skipped test.

I currently comment the spec with an issue number, but it would be really nice to report the reason the test was disabled and the issue number.

UPDATE

As requested, adding example terminal output ( fdescribe on an example, so reporting most of the suite disabled ):

Versions: Protractor 2.1.0 and Jasmine 2.3.1

Using xit

 Skipped
*      will display the platform if available ...
...
SUCCESS: 85 specs, 0 failures, 1 skipped, 72 disabled in 34.734s.
Pending:

1) will display the platform if available
No reason given

Using pending()

This appears to have started marking it failed, probably related to https://github.com/angular/protractor/issues/1852

Failures:
1) will display the platform if available
Message:
Failed: => marked Pending
Stack:
Error: Failed: => marked Pending

UPDATED: Related feature requests and issues for this functionality

There is currently a feature request to support pending(message) outstanding for Protractor/jasminewd if you want to follow progress :

https://github.com/angular/jasminewd/issues/32 https://github.com/angular/protractor/issues/2454


回答1:


Another way would be to call the pend method on the test itself:

xit('Pending test description', function() {
    // test body
}).pend('Reason for being disabled');



回答2:


pending() receives a single message argument which is actuall a "pending reason":

pending("doesn't work, issue #123")

FYI, here is the initial feature request:

  • Pending specs overview

and the official docs:

  • jasmine pending docs


来源:https://stackoverflow.com/questions/31688650/is-it-possible-to-send-a-reason-for-jasmine-2-specs-skipped-with-xit-or-pending

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!