mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-25 14:57:38 +00:00
18 lines
492 B
HTML
18 lines
492 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<script>navigator.userAgent.match(/MSIE \d|Trident.*rv:/)&&document.write('<script src="../dist/ie11-polyfills.js"><\/script>')</script>
|
|
|
|
<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"></script>
|
|
|
|
<script>
|
|
mocha.setup('tdd');
|
|
|
|
System.import('test-production.js')
|
|
.then(mocha.run);
|
|
</script>
|
|
|
|
<div id="mocha"></div>
|