systemjs/test/test-babel.html
2017-01-23 10:38:15 +02:00

27 lines
636 B
HTML

<!doctype html>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css"/>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../dist/system.src.js" type="text/javascript"></script>
<script>
mocha.setup('tdd');
SystemJS.config({
map: {
'plugin-babel': '../node_modules/systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build': '../node_modules/systemjs-plugin-babel/systemjs-babel-browser.js'
},
transpiler: 'plugin-babel'
});
SystemJS.import('test.js')
.then(function () {
mocha.run();
});
</script>
<div id="mocha"></div>