In the following Grunt configuration for Jasmine, what is the pivotal
property for?
// Example configuration
grunt.initConfig({
jasmine: {
pivotal: {
src: 'src/**/*.js',
options: {
specs: 'spec/*Spec.js',
helpers: 'spec/*Helper.js'
}
}
}
});
Is it for "namespacing" your tests?