UNPKG

jsbsim.js

Version:

JSBSim flight dynamics model ported to JavaScript

30 lines (24 loc) 660 B
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="minimum-scale=1.0, width=device-width, maximum-scale=1.0, user-scalable=no"> <!-- dependencies --> <script src="../dist/JSBSim.js"></script> </head> <body> <div id="mocha"></div> <script src="../node_modules/mocha/mocha.js"></script> <script src="../node_modules/chai/chai.js"></script> <script> mocha.setup('bdd'); mocha.reporter('html'); </script> <!-- Tests --> <script src="dist/tests.js"></script> <script> mocha.run(); </script> </body> </html>