UNPKG

gpii-testem

Version:

A library to assist in using Testem within the Fluid ecosystem.

53 lines (42 loc) 3.14 kB
<html> <head> <title>"Incomplete" coverage tests.</title> <!-- Bring in jQuery and other dependencies --> <script type="text/javascript" src="/node_modules/infusion/src/lib/jquery/core/js/jquery.js"></script> <!-- Bring in the minimum fluid dependencies required to test a fluid.component using IoC tests --> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/Fluid.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/FluidDocument.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/FluidDOMUtilities.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/FluidIoC.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/DataBinding.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/FluidView.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/ModelTransformation.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/core/js/ModelTransformationTransforms.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/enhancement/js/ContextAwareness.js"></script> <script type="text/javascript" src="/node_modules/infusion/src/framework/enhancement/js/ProgressiveEnhancement.js"></script> <script type="text/javascript" src="/node_modules/infusion/tests/test-core/utils/js/IoCTestUtils.js"></script> <!-- QUnit/jqUnit dependencies --> <script type="text/javascript" src="/node_modules/infusion/tests/lib/qunit/js/qunit.js"></script> <!-- testem must be loaded after QUnit --> <script src="/testem.js"></script> <script type="text/javascript" src="/node_modules/infusion/tests/test-core/jqUnit/js/jqUnit.js"></script> <script type="text/javascript" src="/node_modules/infusion/tests/test-core/jqUnit/js/jqUnit-browser.js"></script> <link rel="stylesheet" href="/node_modules/node-jqunit/node_modules/infusion/tests/lib/qunit/css/qunit.css"/> <!-- Wire up a coverage reporter to save test coverage reports after the run completes --> <script type="text/javascript" src="/coverage/client/coverageSender.js"></script> <!-- Our test fixtures and components --> <script type="text/javascript" src="/src/js/coverage-components.js"></script> <script type="text/javascript" src="/src/js/coverage-client-fixtures.js"></script> </head> <body> <h1 id="qunit-header">"Incomplete Coverage" Tests</h1> <h2 id="qunit-banner"></h2> <div id="qunit-testrunner-toolbar"></div> <h2 id="qunit-userAgent"></h2> <ol id="qunit-tests"></ol> <div id="qunit-fixture"></div> <script type="text/javascript"> fluid.test.runTests("gpii.tests.testem.coverage.environment.complete"); </script> </body> </html>