mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
40 lines
931 B
TypeScript
40 lines
931 B
TypeScript
import Filter from 'ansi-to-html';
|
|
import { type StorybookTheme, useTheme } from 'storybook/theming';
|
|
|
|
export function isTestAssertionError(error: unknown) {
|
|
return isChaiError(error) || isJestError(error);
|
|
}
|
|
|
|
export function isChaiError(error: unknown) {
|
|
return (
|
|
error &&
|
|
typeof error === 'object' &&
|
|
'name' in error &&
|
|
typeof error.name === 'string' &&
|
|
error.name === 'AssertionError'
|
|
);
|
|
}
|
|
|
|
export function isJestError(error: unknown) {
|
|
return (
|
|
error &&
|
|
typeof error === 'object' &&
|
|
'message' in error &&
|
|
typeof error.message === 'string' &&
|
|
error.message.startsWith('expect(')
|
|
);
|
|
}
|
|
|
|
export function createAnsiToHtmlFilter(theme: StorybookTheme) {
|
|
return new Filter({
|
|
fg: theme.color.defaultText,
|
|
bg: theme.background.content,
|
|
escapeXML: true,
|
|
});
|
|
}
|
|
|
|
export function useAnsiToHtmlFilter() {
|
|
const theme = useTheme();
|
|
return createAnsiToHtmlFilter(theme);
|
|
}
|