You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This gulp plugin has been my saving grace for running Jasmine tests. I was originally using the jasmine-maven-plugin along with the phantomjs-maven-plugin. To get them to work, I had to copy my ordered source file array in my gulpfile to my pom.xml and do many other finicky things. Despite its issues, the plugin did provide me with control on the size of the console output when running tests. It would be nice if there was a Gulp option(s) to minify the output of the terminal reporter when running in integration mode. With a large number of specs, the console output becomes very long and can potentially slow down the build time.
For example, the <format>progress</format> option in the jasmine-maven-plugin allows you to condense the console output to periods for successful tests and "F" for failed tests. Other jasmine reporters offer settings to only show failed tests, successful tests, etc.
Something similar, but not necessarily identical, would be a fantastic addition to this already useful plugin.
The text was updated successfully, but these errors were encountered:
This gulp plugin has been my saving grace for running Jasmine tests. I was originally using the jasmine-maven-plugin along with the phantomjs-maven-plugin. To get them to work, I had to copy my ordered source file array in my gulpfile to my pom.xml and do many other finicky things. Despite its issues, the plugin did provide me with control on the size of the console output when running tests. It would be nice if there was a Gulp option(s) to minify the output of the terminal reporter when running in integration mode. With a large number of specs, the console output becomes very long and can potentially slow down the build time.
For example, the
<format>progress</format>
option in the jasmine-maven-plugin allows you to condense the console output to periods for successful tests and "F" for failed tests. Other jasmine reporters offer settings to only show failed tests, successful tests, etc.Something similar, but not necessarily identical, would be a fantastic addition to this already useful plugin.
The text was updated successfully, but these errors were encountered: