UNPKG

promised-websql

Version:

![npm](https://img.shields.io/npm/v/promised-websql) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/promised-websql) # Promised WebSQL

22 lines (19 loc) 574 B
<!DOCTYPE html> <html> <head> <title>Promised SQL Integration tests</title> <link rel="stylesheet" href="node_modules/mocha/mocha.css"> </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')</script> <!-- load code you want to test here --> <script type="module" src="tests/integration_tests/index.js"></script> <script type="module" src="tests/integration_tests/run.js"></script> <script> mocha.run(); </script> </body> </html>