mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
26 lines
570 B
HTML
26 lines
570 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css"/>
|
|
|
|
<!-- used for IE testing -->
|
|
<script src="../node_modules/bluebird/js/browser/bluebird.js"></script>
|
|
|
|
<script src="../node_modules/mocha/mocha.js"></script>
|
|
|
|
<script src="../dist/system-production.src.js" type="text/javascript"></script>
|
|
|
|
<script>
|
|
mocha.setup('tdd');
|
|
|
|
/* System.config({
|
|
wasm: true
|
|
}); */
|
|
|
|
SystemJS.import('test-production.js')
|
|
.then(function () {
|
|
mocha.run();
|
|
});
|
|
</script>
|
|
|
|
<div id="mocha"></div>
|