Skip to content

Commit e703e37

Browse files
committed
Update ESLint config to ignore storybook-static directory and increase test timeout for Plugin Charts
1 parent a803c48 commit e703e37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import reactHooks from 'eslint-plugin-react-hooks'
1515
import reactRefresh from 'eslint-plugin-react-refresh'
1616
import tseslint from 'typescript-eslint'
1717

18-
export default tseslint.config({ ignores: ['**/dist', '**/.next', '**/node_modules', '**/public'] }, {
18+
export default tseslint.config({ ignores: ['**/dist', '**/.next', '**/node_modules', '**/public', '**/storybook-static'] }, {
1919
extends: [js.configs.recommended, ...tseslint.configs.recommended],
2020
files: ['**/*.{ts,tsx}'],
2121
languageOptions: {

packages/plugin-charts/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ describe('Plugin Charts', () => {
1313
// Import all renderers to register them
1414
beforeAll(async () => {
1515
await import('./index');
16-
}, 30000);
16+
}, 60000);
1717

1818
describe('bar-chart component', () => {
1919
it('should be registered in ComponentRegistry', () => {

0 commit comments

Comments
 (0)