javascript - E2E Protractor tests in firefox says 8 pending specs what does it mean? -
when run tests get:
11 specs, 0 failures, 8 pending specs
finished in 56.861 seconds
[launcher] 0 instance(s) of webdriver still running
[launcher] firefox #1 passed.
what "8 pending specs" mean?
this coming test framework (i assume jasmine):
pending specs not run, names show in results pending.
any spec declared
xitmarked pending.any spec declared without function body marked pending in results.
and if call function
pendinganywhere in spec body, no matter expectations, spec marked pending.
if asking , haven't done intentionally, empty it() blocks among tests. jasmine considers them "pending", or, in other words, "not yet implemented".
fyi, related github issue:
Comments
Post a Comment