Skip to content

Commit 9941b79

Browse files
committed
Fix: Updated output msg check in nighlty tests
1 parent 177ef4e commit 9941b79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/e2e-tests/build.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ test.describe('CMSIS Solution Build Validation', () => {
233233
await vsCodeDriver.page.screenshot(`${example.name}/Build in progress - ${context}`);
234234
await expect.poll(async () => {
235235
const output = await helpers.copyTerminalText(vsCodeDriver);
236-
return output.includes('Completed: cbuild succeed with exit code 0');
236+
return /Program Size:\s*Code=\d+\s+RO-data=\d+\s+RW-data=\d+\s+ZI-data=\d+/i.test(output);
237237
}, {
238238
timeout: DEFAULT_TIMEOUT_MS,
239239
intervals: [4000]

0 commit comments

Comments
 (0)