Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test-scss/helpers.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-scss/helpers.js b/test-scss/helpers.js
index b618f213c0..21f9df6904 100644
--- a/test-scss/helpers.js
+++ b/test-scss/helpers.js
@@ -25,7 +25,7 @@ const ErrorAssertion = function (module, test, assertionDetails) {
const print = (msg, indent = 0, color = null, force = false) => {
const indentSpaces = ' '.repeat(indent)
- msg = indentSpaces + msg.replaceAll('\n', '\n' + indentSpaces)
+ msg = indentSpaces + msg.replace(/\n/g, '\n' + indentSpaces)
if (!BE_VERBOSE && !force) {
return