From 6262921f3f02c7e1f243cd8e03358a11e5ef978e Mon Sep 17 00:00:00 2001 From: Jan Nicklas Date: Mon, 23 Nov 2015 12:24:55 +0100 Subject: [PATCH] Add missing use strict statements --- spec/fixtures/async.js | 2 ++ spec/fixtures/common.js | 2 ++ spec/fixtures/theme.js | 2 ++ spec/fixtures/util.js | 1 + 4 files changed, 7 insertions(+) diff --git a/spec/fixtures/async.js b/spec/fixtures/async.js index a39fabc..c7050f9 100644 --- a/spec/fixtures/async.js +++ b/spec/fixtures/async.js @@ -1 +1,3 @@ +'use strict'; + module.exports = "async"; diff --git a/spec/fixtures/common.js b/spec/fixtures/common.js index 19658c1..2ad369d 100644 --- a/spec/fixtures/common.js +++ b/spec/fixtures/common.js @@ -1 +1,3 @@ +'use strict'; + module.exports = "common"; diff --git a/spec/fixtures/theme.js b/spec/fixtures/theme.js index 6cacd7e..bb7bb77 100644 --- a/spec/fixtures/theme.js +++ b/spec/fixtures/theme.js @@ -1,2 +1,4 @@ +'use strict'; + require('./main.css'); require('./index.js'); \ No newline at end of file diff --git a/spec/fixtures/util.js b/spec/fixtures/util.js index 2235f58..b6c938f 100644 --- a/spec/fixtures/util.js +++ b/spec/fixtures/util.js @@ -1,2 +1,3 @@ +'use strict'; require('./common'); document.body.innerHTML = document.body.innerHTML + "

util.js

";