UNPKG

thingmodel

Version:

Synchronize data and models across multiple devices

37 lines (32 loc) 1.14 kB
<!DOCTYPE html> <!-- ReSharper disable Html.PathError --> <html> <head> <meta charset="utf-8"/> <title>Mocha test runner</title> <link rel="stylesheet" href="../bower_components/mocha/mocha.css" /> </head> <body> <div id="mocha"></div> <script src="../bower_components/lodash/dist/lodash.js"></script> <script src="../bower_components/should/should.js"></script> <script src="../bower_components/long/Long.js"></script> <script src="../bower_components/bytebuffer/dist/ByteBufferAB.js"></script> <script src="../bower_components/protobuf/dist/ProtoBuf.noparse.js"></script> <script src="../build/ThingModel.min.js"></script> <script src="../bower_components/mocha/mocha.js"></script> <script>mocha.setup('bdd')</script> <script src="PropertyTest.js"></script> <script src="ThingTypeTest.js"></script> <script src="ThingTest.js"></script> <script src="WarehouseTest.js"></script> <script src="ProtoConversionsTest.js"></script> <script src="BuildersTest.js"></script> <script> mocha.checkLeaks(); mocha.globals(['_']); mocha.run(); </script> </body> </html> <!-- ReSharper restore Html.PathError -->