npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-node-qunit

v2.0.2

Published

Grunt task running node-qnuit [https://github.com/kof/node-qunit]

Downloads

148

Readme

grunt-node-qunit

Build Status


A Grunt task for running node-qunit

Grunt is a task-based command line build tool for JavaScript projects, based on nodejs. Node-Qunit is a Qunit testing framework for nodejs QUnit is a powerful, easy-to-use JavaScript unit test suite used by the jQuery, jQuery UI and jQuery Mobile projects and is capable of testing any generic JavaScript code, including itself!

About the tool

The Grunt Node-Qunit task is a wrapper for the node-qunit task to be used in grunt. The parameters used are the exact parameters used with the node-quit package.

How is this different from grunt-nodeunit

Grunt NodeUnit task uses the nodeunit testing framework. The syntax is slightly different and uses the node-qunit. The syntax for this task is exactly like the qunit syntax.

#Usage

This task is available as a node package and can be installed as npm install grunt-node-qunit. It can also be included as a devDependency in package.json in your node project. To use the task in grunt.js, load the npmTask.

grunt.loadNpmTasks('grunt-node-qunit');

__Note that this is NOT a multi task. Node-Qunit is used via the API, as described here.

The parameters are

  • setup : An object passed to qunit.setup
  • deps : define dependencies, which are required then before code, passed in qunit.run()
  • code : define the code that needs to be tested
  • tests: define the test files
  • done : A callback that is called everytime a qunit test for a page is complete. Runs per page, per browser configuration. A true or false return value passes or fails the test, undefined return value does not alter the result of the test. For async results, call this.async() in the function. The return of this.async() is a function that should be called once the async action is completed.

#Example

Inside the grunt.initConfig, add a section


grunt.initConfig({
	//....
	'node-qunit': {
		deps: './src/pouch.js',
		code: './src/adapters/pouch.leveldb.js',
		tests: testFiles.map(function(n){
			return "./tests/" + n;
		}),
		done: function(err, res){
			!err && publishResults("node", res, this.async());
		}
	},
	// ....
}); // end of grunt.initConfig

// Elsewhere in the grunt file grunt.loadNpmTasks('grunt-node-qunit');