Closed bgturner closed 8 years ago
I figured out what was wrong with my issue. I had installed a global version of phpspec which was much newer ( 3.1.1
) vs the 2.0.0
series that was laid out in the composer.json
file
Updating the composer.json
file to the most recent version fixed this.
When using a custom php namespace, gulp-phpspec is unable to locate and run the specs.
I've created a namespace called
BTCodeKatas
-- setting it both in thecomposer.json
file as well as aphpspec.yml
file in the project root.The below configuration allows me to create new specs using the typical
phpspec describe Namespace/ClassName
as well as run those specs usingphpspec run
. However when executinggulp
there are no specs found.