From bb84823ef3ba3f5bdc9fe3279291c329739bf544 Mon Sep 17 00:00:00 2001 From: Guillaume AMAT Date: Thu, 22 Mar 2018 18:16:50 +0100 Subject: [PATCH] fix: Missing messages for ttfi and ttci --- lib/utils/messages.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/utils/messages.ts b/lib/utils/messages.ts index f558822..c099d86 100644 --- a/lib/utils/messages.ts +++ b/lib/utils/messages.ts @@ -56,6 +56,10 @@ const getMessage = function (messageType: string, ...args: any[]) { return 'Visually Complete 100%'; case 'tti': return 'Time to Interactive'; + case 'ttfi': + return 'First Interactive (vBeta)'; + case 'ttci': + return 'Time to Consistently Interactive (vBeta)'; case 'vc85': return 'Visually Complete 85%'; case 'SUCCESS_RUN':