diff --git a/scripts/event-log-checker.ts b/scripts/event-log-checker.ts index bc8738fbf0c..316f4103b42 100644 --- a/scripts/event-log-checker.ts +++ b/scripts/event-log-checker.ts @@ -33,8 +33,10 @@ async function run() { assert.equal(bootEvent.payload?.eventType, eventType); const { exampleStoryCount, exampleDocsCount } = mainEvent.payload?.storyIndex || {}; - assert.equal(exampleStoryCount, 8); - assert.equal(exampleDocsCount, 3); + if (['build', 'dev'].includes(eventType)) { + assert.equal(exampleStoryCount, 8); + assert.equal(exampleDocsCount, 3); + } assert.equal(mainEvent.eventType, eventType); assert.notEqual(mainEvent.eventId, bootEvent.eventId);