From 4ab9e0deda05538f335cacfc0f7fe4b269a03b3d Mon Sep 17 00:00:00 2001 From: Cristian Dominguez Date: Tue, 18 Jun 2024 12:30:47 -0300 Subject: [PATCH] fix(nuts): case-sensitive regex --- test/commands/apex/loggingCommands.nut.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/commands/apex/loggingCommands.nut.ts b/test/commands/apex/loggingCommands.nut.ts index d78f96ee..adf68898 100644 --- a/test/commands/apex/loggingCommands.nut.ts +++ b/test/commands/apex/loggingCommands.nut.ts @@ -85,7 +85,7 @@ describe('apex log *', () => { it('will list the debug logs', async () => { const result = execCmd('apex:list:log', { ensureExitCode: 0 }).shellOutput.stdout; expect(result).to.match( - / APPLICATION DURATION \(MS\) ID\s+LOCATION\s+SIZE \(B\) LOG USER\s+OPERATION REQUEST START TIME\s+STATUS / + / Application Duration \(ms\) Id\s+Location\s+Size \(B\) Log User\s+Operation Request Start Time\s+Status / ); expect(result).to.match(/User User Api\s+Api\s+\d{4}-\d{2}-.* Success /); });