From 6a2418107962bf6f48f2ef0fd30730ab42d117cc Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 29 Mar 2018 23:05:04 +0300 Subject: [PATCH] Fix for tests --- resources/views/master.blade.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php index 67caf07680ea..86967f5b08d9 100644 --- a/resources/views/master.blade.php +++ b/resources/views/master.blade.php @@ -73,6 +73,11 @@ if (errorMsg.indexOf('DOM Exception 22') > -1) { return; } + @if (Utils::isTravis()) + if (errorMsg.indexOf('Attempting to change value of a readonly property') > -1) { + return; + } + @endif // Less than IE9 https://stackoverflow.com/a/14835682/497368 if (! document.addEventListener) { return;