Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes <johannes.ewald@roomieplanet.de>2012-08-20 04:36:35 +0400
committerJohannes <johannes.ewald@roomieplanet.de>2012-08-20 04:36:35 +0400
commit3cc25aec3698c7becd463bd75524a3b2a319ecab (patch)
treecff8c03016f05a7646ed864ca7238e5f9f09b7ce /test/bundlers
parentc5d8fab07f0edc568e45e0747f863afd5876abc2 (diff)
- All tests running
- Added changelog
Diffstat (limited to 'test/bundlers')
-rw-r--r--test/bundlers/browserify/index.html6
-rw-r--r--test/bundlers/webpack/index.html2
2 files changed, 6 insertions, 2 deletions
diff --git a/test/bundlers/browserify/index.html b/test/bundlers/browserify/index.html
index dc76f31..5374871 100644
--- a/test/bundlers/browserify/index.html
+++ b/test/bundlers/browserify/index.html
@@ -1,11 +1,13 @@
<!doctype html>
<head>
- <link rel="stylesheet" href="../../node_modules/mocha/mocha.css" />
- <script src="../../node_modules/mocha/mocha.js" type="text/javascript"></script>
+ <link rel="stylesheet" href="../../../node_modules/mocha/mocha.css" />
+ <script src="../../../node_modules/mocha/mocha.js" type="text/javascript"></script>
+ <script src="../../testHelpers/browserShims.js" type="text/javascript"></script>
<script src="bundle.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
+ var testEnv = "browserify";
window.onload = function () {
console.log("These tests will only work in all browsers with the console open");
mocha.setup({
diff --git a/test/bundlers/webpack/index.html b/test/bundlers/webpack/index.html
index e9b2d63..5aea4b1 100644
--- a/test/bundlers/webpack/index.html
+++ b/test/bundlers/webpack/index.html
@@ -2,10 +2,12 @@
<head>
<link rel="stylesheet" href="../../../node_modules/mocha/mocha.css" />
<script src="../../../node_modules/mocha/mocha.js" type="text/javascript"></script>
+ <script src="../../testHelpers/browserShims.js" type="text/javascript"></script>
<script src="bundle.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
+ var testEnv = "webpack";
window.onload = function () {
console.log("These tests will only work in all browsers with the console open");
mocha.setup({