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 xit marked pending.

any spec declared without function body marked pending in results.

and if call function pending anywhere 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

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -