diff options
Diffstat (limited to 'test/karma.context.html')
-rw-r--r-- | test/karma.context.html | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/test/karma.context.html b/test/karma.context.html deleted file mode 100644 index a8977b765..000000000 --- a/test/karma.context.html +++ /dev/null @@ -1,43 +0,0 @@ -<!DOCTYPE html> -<html lang="en" id="html"> -<head> - <meta charset="utf-8"> - <title>CONTEXT</title> - <!-- Karma serves this page from /context.html. Other files are served from /base --> - <link rel="stylesheet" href="/base/test/data/testsuite.css" /> -</head> -<body id="body"> - <div id="qunit"></div> - - <!-- Start: jQuery Test HTML --> - <!-- this iframe is outside the #qunit-fixture so it won't waste time by constantly reloading; the tests are "safe" and clean up after themselves --> - <iframe id="loadediframe" name="loadediframe" style="display:none;" src="/base/test/data/iframe.html"></iframe> - <div id="qunit-fixture"></div> - <!-- End: jQuery Test HTML --> - - <!-- Start: Karma boilerplate --> - <script src="/context.js"></script> - <script> - %CLIENT_CONFIG% - window.__karma__.setupContext(window); - - %MAPPINGS% - </script> - %SCRIPTS% - <!-- End: Karma boilerplate --> - - <script src="/base/test/data/qunit-fixture.js"></script> - <script> - // QUnit.config is populated from QUnit.urlParams but only at the beginning - // of the test run. We need to read both. - var esmodules = QUnit.config.esmodules || QUnit.urlParams.esmodules; - - // Workaround: Remove call to `window.__karma__.loaded()` - // in favor of calling `window.__karma__.start()` from `loadTests()` - // because tests such as unit/ready.js should run after document ready. - if ( !esmodules ) { - loadTests(); - } - </script> -</body> -</html> |