diff options
-rw-r--r-- | spec/frontend/test_setup.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/frontend/test_setup.js b/spec/frontend/test_setup.js index 97b6dadb0d3..fcdc1b27de6 100644 --- a/spec/frontend/test_setup.js +++ b/spec/frontend/test_setup.js @@ -82,6 +82,6 @@ testUtilsConfig.logModifiedComponents = false; beforeEach(() => { const { execSync } = require('child_process'); - console.log('free -m', execSync('free -m')); + console.log('free -m', execSync('free -m').toString()); }); |