This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

grunt-template-jasmine-dojo

0.0.7 • Public • Published

Dojo template for Jasmine unit tests

Grunt Jasmine template for Dojo Toolkit, inspired and informed by grunt-template-jasmine-requirejs.

Contributors welcome. Please raise issues and create pull requests as appropriate.

Installation

npm install grunt-template-jasmine-dojo --save-dev

Template Options

templateOptions.dojoConfig

Type: Object

This object is JSON.stringify()-ed into the template and passed into dojoConfig variable.

templateOptions.dojoFile

Type String

The path to the dojo library on the system, in order to bootstrap Dojo.

Sample usage

grunt.initConfig({
	connect: {
		test: {
			options: {
				base: './',
				port: 8001
			}
		}
	},
	jasmine: {
		test: {
			options: {
				host: 'http://localhost:8001/',
				specs: 'test/**/*.spec.js',
				template: require('grunt-template-jasmine-dojo'),
				templateOptions: {
					dojoConfig: {
						async: true,
						baseUrl: 'staging/',
						packages: [{
							name: 'dojo',
							location: 'lib/dojo'
						}, {
							name: 'dojox',
							location: 'lib/dojox'
						}, {
							name: 'dijit',
							location: 'lib/dijit'
						}, {
							name: 'app',
							location: 'script'
						}]
					},
					dojoFile: 'bower_components/dojo/dojo.js'
				}
			}
		}
	}
});

grunt.registerTask('test', [
	'connect:test',
	'jasmine:test'
]);

Note the usage of the 'connect' task configuration. You will need to use a task like grunt-contrib-connect if you need to test your tasks on a running server.

##Sample test

For reference, here's a simple test that uses Dojo code. Note that you do not need to specify any source files in the config, as they can all be loaded via AMD once the dojoConfig has been set.

describe('MyController', function() {
	require(['app/controller/MyController'], function(MyController) {
		it('Can set async value', function(done) {
			expect(MyController.getCurrentValue()).toBe(null);
			MyController.setValueAsync('newValue').then(function() {
				expect(MyController.getCurrentValue()).toBe('newValue');
				done();
			});
		});
	});
});

Authors / Maintainers

  • Martin Doyle (@MartinDoyleUK)

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i grunt-template-jasmine-dojo

    Weekly Downloads

    21

    Version

    0.0.7

    License

    MIT

    Last publish

    Collaborators

    • martindoyleuk
    • pplewa