UNPKG

mongo-sql

Version:

A mongo-like interface for sql generation, postgres-style

23 lines 624 B
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mocha Test Runner</title> </head> <body> <div id="mocha"></div> <script src="../node_modules/mocha/mocha.js"></script> <script>mocha.setup('bdd')</script> <script src="../build/mosql.js"></script> <script src="../build/mosql.spec.js"></script> <script> if (window.mochaPhantomJS) { mochaPhantomJS.run(); } else { mocha.run(); } </script> </body> </html>