
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
grunt-magic-mocha
Advanced tools
Grunt task to run front-end mocha unit tests from the command line with no browser.
Grunt task to run front-end mocha unit tests from the command line with no browser.
This plugin requires Grunt ~0.4.4
-- Learn to use Grunt
Install the plugin with this command:
npm install grunt-magic-mocha --save-dev
Enable in your Gruntfile with:
grunt.loadNpmTasks('grunt-magic-mocha');
NOTE: If you get errors installing this module, it is probably caused by the
contextify
dependency ofjsDOM
. There is more information here.
If you are using Linux, you may just need to update your version of
NodeJS
. The most up-to-date version can be found here. You will need to download the file, untar it and then run the following commands within the new directory:
./configure
make
sudo make install
grunt.initConfig({
magic_mocha: {
myTests: {
files: {
src: ['test/**/*_test.js']
}
}
}
});
In your project's Gruntfile, add a section named magic_mocha
to the data object passed into grunt.initConfig()
.
grunt.initConfig({
magic_mocha: {
myTestsWithOptions: {
options: {
globals: {
// Add the jQuery module to the window object
'$': 'jquery'
},
mochaOptions:{
// You should be able to include any mocha options here
reporter: "spec",
ui: "bdd"
}
},
files: {
src: ['test/**/*_test.js']
}
}
}
});
Type: object
Specifies modules that should be attached to the global window
variable.
Type: object
Specifies any mocha options to be used. For more details, look throught the Mocha documentation.
The following options are included by default:
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
FAQs
Grunt task to run front-end mocha unit tests from the command line with no browser.
The npm package grunt-magic-mocha receives a total of 0 weekly downloads. As such, grunt-magic-mocha popularity was classified as not popular.
We found that grunt-magic-mocha 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.