diff --git a/integration_tests/utils.js b/integration_tests/utils.js index ebab684b0ee0..06454d81d817 100644 --- a/integration_tests/utils.js +++ b/integration_tests/utils.js @@ -148,7 +148,7 @@ const extractSummary = (stdout: string) => { const rest = cleanupStackTrace( // remove all timestamps - stdout.slice(0, -match[0].length).replace(/\s*\(.*ms\)/gm, ''), + stdout.slice(0, -match[0].length).replace(/\s*\(\d*\.?\d+m?s\)$/gm, ''), ); return {rest, summary};