jasmine 簡介
Jasmine 是一個含有雄厚的斷言庫的測試框架。現在我用的最新的版本是:2.6
基本篇
命令行中環境中運用jasmine
裝置
npm install -g jasmine //這裏採納全局裝置,優點是直接cmd就能用,也能夠採納當地裝置
初始化配置文件
jasmine init
天生的配置文件以下jasmine.json:
{
“spec_dir”: “spec”, //spec 地點目次
“spec_files”: [
"**/*[sS]pec.js" //測試文件,相對於spec_dir
],
“helpers”: [
"helpers/**/*.js" //測試前輔佐文件,相對於spec_dir
],
“stopSpecOnExpectationFailure”: false, //
“random”: false
}
運轉測試
//直接依據配置文件運轉
jasmine
//實行測試某個文件
jasmine appSpec.js
node 環境中運用jasmine
var Jasmine = require(‘jasmine’);
var jasmine = new Jasmine();
加載配置文件
//體式格局1
jasmine.loadConfigFile(‘spec/support/jasmine.json’);
//體式格局2
jasmine.loadConfig({
spec_dir: 'spec',
spec_files: [
'appSpec.js',
'requests/**/*[sS]pec.js',
'utils/**/*[sS]pec.js'
],
helpers: [
'helpers/**/*.js'
]
});
自定義測試完成事宜
jasmine.onComplete(function(passed) {
if(passed) {
console.log('All specs have passed');
}
else {
console.log('At least one spec has failed');
}
});
自定義測試報告
jasmine.configureDefaultReporter({
timer: new this.jasmine.Timer(),
print: function() {
process.stdout.write(util.format.apply(this, arguments));
},
showColors: true,
jasmineCorePath: this.jasmineCorePath
});
var CustomReporter = require(‘./myCustomReporter’);
var customReporter = new CustomReporter();
jasmine.addReporter(customReporter);
實行測試
jasmine.execute();
jasmine.execute([‘fooSpec.js’], ‘a spec name’);
簡樸完全的測試案例
var Jasmine = require(‘jasmine’);
var jasmine = new Jasmine();
jasmine.loadConfigFile(‘spec/support/jasmine.json’);
jasmine.configureDefaultReporter({
showColors: false
});
jasmine.execute();