-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20539 from storybookjs/shilman/add-page-story-counts
Telemetry: Add pageStoryCount
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import { isPageStory } from './summarizeIndex'; | ||
|
||
describe('isPageStory', () => { | ||
describe('true positives', () => { | ||
it.each(['pages/login', 'screens/login', 'components/LoginPage', 'components/LoginScreen'])( | ||
'%s', | ||
(title) => { | ||
expect(isPageStory(title)).toBe(true); | ||
} | ||
); | ||
}); | ||
|
||
describe('false positives', () => { | ||
it.each([ | ||
'components/PagerStatus', | ||
'components/DefectScreener', | ||
'addons/docs/docspage/autoplay', | ||
])('%s', (title) => { | ||
expect(isPageStory(title)).toBe(true); | ||
}); | ||
}); | ||
|
||
describe('true negatives', () => { | ||
it.each(['atoms/Button', 'components/Slider'])('%s', (title) => { | ||
expect(isPageStory(title)).toBe(false); | ||
}); | ||
}); | ||
|
||
describe('false negatives', () => { | ||
it.each(['flows/login', 'login-flow/forgot password'])('%s', (title) => { | ||
expect(isPageStory(title)).toBe(false); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters