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
path: root/test
diff options
context:
space:
mode:
authorJohannes Ewald <mail@johannesewald.de>2013-03-13 05:26:11 +0400
committerJohannes Ewald <mail@johannesewald.de>2013-03-13 05:26:11 +0400
commitb5917f79bc8367207b5ad6e88ce8b3aaec6dc1b8 (patch)
tree1f11268fbc4c00404de5a68ac0b12b2eb8020bc0 /test
parent70d27afabbd0a3af3a0fd3725bf198773268c676 (diff)
- Removed note on IEv1.1.2
Diffstat (limited to 'test')
-rw-r--r--test/testModules/sharedTestCases.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testModules/sharedTestCases.js b/test/testModules/sharedTestCases.js
index 70bad49..050c753 100644
--- a/test/testModules/sharedTestCases.js
+++ b/test/testModules/sharedTestCases.js
@@ -158,7 +158,7 @@ describe("rewire " + (typeof testEnv === "undefined"? "(node)": "(" + testEnv +
it("subsequent calls of rewire should always return a new instance", function () {
expect(rewire("./moduleA.js")).not.to.be(rewire("./moduleA.js"));
});
- it("should preserve the strict mode (not IE)", function () {
+ it("should preserve the strict mode", function () {
var strictModule = rewire("./strictModule.js");
expect(function () {