Skip to content

Commit 83dc8eb

Browse files
authored
Merge branch 'main' into update-node-version
2 parents 1db29f6 + 2907605 commit 83dc8eb

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/nightly.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
pull_request:
66
paths:
77
- .github/workflows/nightly.yml
8+
- src/e2e-tests/**
89
- '!**/*.md'
910
schedule:
1011
- cron: '0 4 * * *'

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)