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:
-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 () {