Only assert example counts on build/dev events

This commit is contained in:
Michael Shilman 2023-01-10 14:44:14 +08:00
parent 32ccd8230a
commit b4565aa019

View File

@ -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);