mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Only assert example counts on build/dev events
This commit is contained in:
parent
32ccd8230a
commit
b4565aa019
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user