diff --git a/test/benchmark-cli.test.ts b/test/benchmark-cli.test.ts index 8edea3b24..7b359601a 100644 --- a/test/benchmark-cli.test.ts +++ b/test/benchmark-cli.test.ts @@ -133,7 +133,7 @@ describe('gstack-model-benchmark --dry-run', () => { const notReadyLines = out.split('\n').filter(l => l.includes('NOT READY')); expect(notReadyLines.length).toBeGreaterThanOrEqual(2); for (const line of notReadyLines) { - expect(line).toMatch(/(install|Install|login|export|Run|Log in)/); + expect(line).toMatch(/(install|login|export|run|log in)/i); } } finally { fs.rmSync(emptyHome, { recursive: true, force: true });