node.js - No specs found issue in protractor with success run -
i running protractor tests in phpstorm 8.0.1. issue despite of providing parameter correctly in application parameters section, script not run, , outputs success run in console. here output.
[12:45:30] i/hosted - using selenium server @ http://localhost:4444/wd/hub [12:45:30] i/launcher - running 1 instances of webdriver started 1..0 # tests disabled # 0 specs, 0 failures, 0 skipped, 0 disabled in 0.014s. # note: disabled specs result of xdescribe. success: 0 specs, 0 failures, 0 skipped, 0 disabled in 0.015s. no specs found finished in 0.016 seconds [12:45:34] i/launcher - 0 instance(s) of webdriver still running [12:45:34] i/launcher - chrome #01 passed process finished exit code 0
my application parameter configured this.
http://screencast.com/t/hoqaw6ya4oe
and here folder structure accordingly correctly configured.
http://screencast.com/t/xk98jrdlc2a
this working earlier fine , of sudden output. suggestions on how resolve of great help.
specs: [ '../specs/wp-lam_spec.js' ],
think couse change :
specs: ['spec/**/*[ss]pec.js'],
so start specs got in spec folder, think might problem lack of '' in parameter screenshot change to:
protractor --specs='path\to\file.spec.js'
Comments
Post a Comment