mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
fc42827641
jest is somewhat documented here: https://facebook.github.io/jest/ related to #61
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
// preprocessor.js
|
|
var ReactTools = require('react-tools');
|
|
module.exports = {
|
|
process: function(src) {
|
|
return ReactTools.transform(src);
|
|
}
|
|
}; |