From 0939de47c50ee240b7800e6cc2cf0117f6306d5c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Thu, 20 Feb 2020 22:50:12 -0800 Subject: [PATCH] fix: do not spoil global namespace --- utils/testrunner/Reporter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/testrunner/Reporter.js b/utils/testrunner/Reporter.js index 986c05d3a7..f40b7b6ee8 100644 --- a/utils/testrunner/Reporter.js +++ b/utils/testrunner/Reporter.js @@ -15,7 +15,7 @@ */ const fs = require('fs'); -const colors = require('colors'); +const colors = require('colors/safe'); const {MatchError} = require('./Matchers.js'); class Reporter {