diff --git a/lib/es6_module_transpiler/tilt/es6_module_transpiler_template.rb b/lib/es6_module_transpiler/tilt/es6_module_transpiler_template.rb index b0d6f1b9172..f827746ea7d 100644 --- a/lib/es6_module_transpiler/tilt/es6_module_transpiler_template.rb +++ b/lib/es6_module_transpiler/tilt/es6_module_transpiler_template.rb @@ -29,7 +29,7 @@ module Tilt end def self.create_new_context - ctx = V8::Context.new(timeout: 5000) + ctx = V8::Context.new(timeout: 10000) ctx.eval("var self = this; #{File.read(Babel::Transpiler.script_path)}") ctx.eval("module = {}; exports = {};"); ctx.load("#{Rails.root}/lib/es6_module_transpiler/support/es6-module-transpiler.js") diff --git a/lib/pretty_text.rb b/lib/pretty_text.rb index 3f30fbd3f58..cfd9b53c276 100644 --- a/lib/pretty_text.rb +++ b/lib/pretty_text.rb @@ -78,7 +78,7 @@ module PrettyText def self.create_new_context # timeout any eval that takes longer that 5 seconds - ctx = V8::Context.new(timeout: 5000) + ctx = V8::Context.new(timeout: 10000) ctx["helpers"] = Helpers.new