mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-09 15:17:59 -05:00
* storybook init * alert stories * Avatar stories * badge stories * button stories * calander stories * stories default * card stories * checkbox stories * formatting * added tailwind config * add collapsible story * added command story * rename use-toast.ts to tsx * added more stories * fix linting issues * added stories for input * added stories for label * Added tests to button story * added multiselect stories * added popover stories * added render stories * scroll area stories * more stories * Added rest of the stories for the default components * fmt * add test runner * added ci * fix tests * fixing ci * remove storybook from ci * removed styling * added new line
17 lines
501 B
JavaScript
17 lines
501 B
JavaScript
const { getJestConfig } = require("@storybook/test-runner");
|
|
|
|
// The default Jest configuration comes from @storybook/test-runner
|
|
const testRunnerConfig = getJestConfig();
|
|
|
|
/**
|
|
* @type {import('@jest/types').Config.InitialOptions}
|
|
*/
|
|
module.exports = {
|
|
...testRunnerConfig,
|
|
/** Add your own overrides below, and make sure
|
|
* to merge testRunnerConfig properties with your own
|
|
* @see https://jestjs.io/docs/configuration
|
|
*/
|
|
testPathIgnorePatterns: ["/node_modules/", "/supabase/"],
|
|
};
|