Skip to content

Commit e38bd00

Browse files
committed
fix stress tests
1 parent 668e34b commit e38bd00

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ build-storybook.log
55
.DS_Store
66
.env
77
.cache
8-
stories/stress-test
8+
stories/atoms/StressTest.stories.js
99
yarn-error.log

scripts/generate-dynamic-stories.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const fs = require('fs');
22

3-
const storiesFolderPath = 'stories/stress-test';
3+
const storiesFolderPath = 'stories/atoms';
44

55
if (!fs.existsSync(storiesFolderPath)) {
66
fs.mkdirSync(storiesFolderPath);
@@ -11,7 +11,7 @@ const storyCount = Number(process.env.DYNAMIC_STORIES_COUNT) || 500;
1111
let content = `
1212
import React from 'react';
1313
14-
import { Button } from '../basic/Button';
14+
import { Button } from './Button';
1515
1616
export default {
1717
title: 'StressTest',

0 commit comments

Comments
 (0)