diff --git a/test/run.js b/test/run.js index 4075bc55fb..f7dbbe7c94 100644 --- a/test/run.js +++ b/test/run.js @@ -50,18 +50,6 @@ config: { parse: (typeof require === "undefined" ? window.acorn : require("../acorn.js")).parse } - }, - Loose: { - config: { - parse: (typeof require === "undefined" ? window.acorn : require("../acorn_loose")).parse_dammit, - loose: true, - filter: function (test) { - if (/`/.test(test.code)) return false; // FIXME remove this when the loose parse supports template strings - var opts = test.options || {}; - if (opts.loose === false) return false; - return (opts.ecmaVersion || 5) <= 6; - } - } } };