31 lines
807 B
HTML
31 lines
807 B
HTML
<html>
|
|
<!--
|
|
Copyright 2009 The Closure Library Authors. All Rights Reserved.
|
|
|
|
Use of this source code is governed by the Apache License, Version 2.0.
|
|
See the COPYING file for details.
|
|
-->
|
|
|
|
<!--
|
|
A regression test for goog.module.ModuleLoader.
|
|
|
|
Unlike the unit tests for goog.module.ModuleManager, this uses
|
|
asynchronous test cases and real XHRs.
|
|
|
|
Author: nicksantos@google.com (Nick Santos)
|
|
-->
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>JsUnit tests for goog.module.ModuleLoader</title>
|
|
<script src='../base.js'></script>
|
|
<script>
|
|
goog.require('goog.module.ModuleLoaderTest');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<b>Note:</b>: If you are running this test off local disk on Chrome, it
|
|
will fail unless you start Chrome with
|
|
<code>--allow-file-access-from-files</code>.
|
|
</body>
|
|
</html>
|