From 79f3203f70bad7af5ea95e14ad3d337043436ce3 Mon Sep 17 00:00:00 2001 From: Jonatan Nilsson Date: Sat, 13 Aug 2022 02:10:40 +0000 Subject: [PATCH] Fix integration test based on latest changes in git config loading --- test/core.test.integration.mjs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/test/core.test.integration.mjs b/test/core.test.integration.mjs index d9256ec..e7b6712 100644 --- a/test/core.test.integration.mjs +++ b/test/core.test.integration.mjs @@ -314,12 +314,13 @@ runners.forEach(function([runnerName, appname]) { let secondLast = parseLine(logs[logs.length - 2]) let last = parseLine(logs[logs.length - 1]) - assert.match(secondLast.msg, /creating/i) - assert.match(secondLast.msg, /application/i) - assert.match(secondLast.msg, /testapp/i) - assert.match(secondLast.msg, /0 releases/i) - assert.match(last.err.message, /none/i) - assert.match(last.err.message, /successful/i) + assert.match(secondLast.msg, /No/i) + assert.match(secondLast.msg, /versions/i) + assert.match(secondLast.msg, /found/i) + assert.match(last.msg, /starting/i) + assert.match(last.msg, /runner/i) + assert.match(last.err.message, /stable/i) + assert.match(last.err.message, /application/i) // Reset our log logs.splice(0, logs.length); logIndex = 0; logWaitIndex = 0;