pegjs/website/views/test.ejs

17 lines
481 B
Plaintext
Raw Normal View History

2018-09-06 13:38:26 +02:00
<div id="mocha"></div>
<link href="/css/test.css" rel="stylesheet" />
2018-09-06 13:38:26 +02:00
<script src="https://unpkg.com/mocha@5.2.0/mocha.js"></script>
<script>
2018-09-25 21:29:26 +02:00
mocha.setup( { ui: "bdd" } );
2018-09-06 13:38:26 +02:00
2018-09-25 21:29:26 +02:00
if ( window.MSInputMethodContext && document.documentMode )
2018-09-06 13:38:26 +02:00
2018-09-25 21:29:26 +02:00
document.getElementById( "mocha" ).innerHTML = "Sorry, IE11 is not supported by the Spec Runner's dependencies.";
else
document.write( "<script src='/js/test-bundle.js' onload='mocha.run()'><\/script>" );
2018-09-06 13:38:26 +02:00
</script>