UNPKG

joicomponents

Version:

Design patterns to build native web components

33 lines (26 loc) 907 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test Of Reactive Mixins for HTMLElement</title> <script src="https://unpkg.com/chai@4.1.2/chai.js"></script> <script src="https://unpkg.com/mocha@4.0.1/mocha.js"></script> <link href="https://unpkg.com/mocha@4.0.1/mocha.css" rel="stylesheet" /> </head> <body> <div id="mocha">Mocha</div> <script> mocha.setup('bdd'); var assert = chai.assert; var expect = chai.expect; var should = chai.should(); </script> <script type="module" src="FlingEventMixinTest.js"></script> <script type="module"> // mocha.checkLeaks(); mocha.run(); </script> <iframe src="Fling1a.html" width="640px" height="800px" frameborder="0">here comes a test relying on html being loaded</iframe> <iframe src="Fling2.html" width="640px" height="800px" frameborder="0">here comes a test relying on html being loaded</iframe> </body> </html>