Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
grunt-jasmine-bundle
Advanced tools
[![Build Status](https://travis-ci.org/testdouble/grunt-jasmine-bundle.png)](https://travis-ci.org/testdouble/grunt-jasmine-bundle)
An opinionated little grunt task for running Jasmine specs of JavaScript/CoffeeScript written to run under Node.js.
It delegates to minijasminenode and includes the following goodies without you even asking:
Check out the included example project for a minimal realistic usage.
"spec/helpers/**/*.{js,coffee}"
)."spec/**/*.{js,coffee}"
).No configuration is necessary if the defaults work for you. A simple config might be as small as this, however:
grunt.loadNpmTasks("grunt-jasmine-bundle")
grunt.initConfig({
spec: {
unit: {
options: {
minijasminenode: {
showColors: true
}
}
}
}
});
grunt-jasmine-bundle
is a multi-task, which means that, if you choose, you can set up multiple builds via configuration. Something like this ought to work:
grunt.initConfig({
spec: {
options: {
minijasminenode: {
showColors: true
}
},
unit: {
options: {
helpers: ["shared/helpers/**/*.{js,coffee}", "test/helpers/**/*.{js,coffee}"],
specs: "test/**/*.{js,coffee}"
}
},
e2e: {
options: {
helpers: ["shared/helpers/**/*.{js,coffee}", "e2e/helpers/**/*.{js,coffee}"],
specs: "e2e/**/*.{js,coffee}"
}
}
}
});
FAQs
[![Build Status](https://travis-ci.org/testdouble/grunt-jasmine-bundle.png)](https://travis-ci.org/testdouble/grunt-jasmine-bundle)
The npm package grunt-jasmine-bundle receives a total of 16 weekly downloads. As such, grunt-jasmine-bundle popularity was classified as not popular.
We found that grunt-jasmine-bundle demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.