原則上測試的過程不外乎 Jest 官網介紹的 >>here<<
如果你是用 ES6 語法進行開發的話,你需要注意的是利用 react-tools 作 transform 時需要指定你的 JS 語法是 ES6
設定方式就是透過 preprocessor.js 讓 react-tools 在 transform 的時候可以將 ES6 語法 enabled 起來
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// preprocessor.js | |
var ReactTools = require('react-tools'); | |
module.exports = { | |
process: function(src) { | |
return ReactTools.transform(src, { | |
harmony:true | |
}); | |
} | |
}; |
此外我再額外介紹一種方式就是利用 babel 來進行 transform 的動作
babel 本身就可以對 ES6 的語法以及 JSX 的進行轉換,所以你也不用擔心 babel 不認得 React.js
透過 npm install babel --save-dev 安裝 babel 之後
修改你的 preprocessor.js,如下所示:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var babel = require("babel"); | |
module.exports = { | |
process: function(src, filename) { | |
if (!babel.canCompile(filename)) { | |
return ''; | |
} | |
if (filename.indexOf('node_modules') === -1) { | |
return babel.transform(src, {filename: filename}).code; | |
} | |
return src; | |
} | |
}; |