grunt-jasmine-node
grunt-jasmine-node是什么
什么是grunt-jasmine-node,Grunt task for running jasmine-node
grunt-jasmine-node使用教程帮助文档
grunt-jasmine-node
A grunt.js task to run your jasmine feature suite using jasmine-node.
Getting Started
Install this grunt plugin next to your project’s grunt.js gruntfile with: npm install grunt-jasmine-node
Then add this line to your project’s grunt.js
grunt file:
grunt.initConfig({
jasmine_node: {
options: {
forceExit: true,
match: '.',
matchall: false,
extensions: 'js',
specNameMatcher: 'spec'
},
all: ['spec/']
}
});
grunt.loadNpmTasks('grunt-jasmine-node');
grunt.registerTask('default', 'jasmine_node');
Bugs
Help us squash them by submitting an issue that describes how you encountered it; please be as specific as possible including operating system, node, grunt, and grunt-jasmine-node versions.
Release History
see GitHub Repository.
License
Copyright © 2012 “s9tpepper” Omar Gonzalez & contributors. Licensed under the MIT license.
本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处。
转载请注明:文章转载自 JavaScript中文网 [https://www.javascriptcn.com]
本文地址:https://www.javascriptcn.com/read-40373.html
文章标题:grunt-jasmine-node