mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
no promise chaining
This commit is contained in:
parent
f70f9245bd
commit
ad98b5b547
@ -12,7 +12,8 @@ export async function readOrderedFiles(
|
|||||||
// convert deeply nested paths to a single level, also remove special characters
|
// convert deeply nested paths to a single level, also remove special characters
|
||||||
const { location, url } = sanitizePath(file, addonsDir);
|
const { location, url } = sanitizePath(file, addonsDir);
|
||||||
|
|
||||||
await fs.ensureFile(location).then(() => fs.writeFile(location, file.contents));
|
await fs.ensureFile(location);
|
||||||
|
await fs.writeFile(location, file.contents);
|
||||||
return url;
|
return url;
|
||||||
}) || []
|
}) || []
|
||||||
);
|
);
|
||||||
|
@ -53,15 +53,15 @@ jest.mock('@storybook/telemetry', () => ({
|
|||||||
}));
|
}));
|
||||||
jest.mock('fs-extra', () => ({
|
jest.mock('fs-extra', () => ({
|
||||||
copy: jest.fn(() => undefined),
|
copy: jest.fn(() => undefined),
|
||||||
ensureFile: jest.fn(() => undefined),
|
|
||||||
writeFile: jest.fn(() => undefined),
|
|
||||||
readFile: jest.fn((f) => ''),
|
|
||||||
emptyDir: jest.fn(() => undefined),
|
emptyDir: jest.fn(() => undefined),
|
||||||
ensureDir: jest.fn(() => undefined),
|
ensureDir: jest.fn(() => true),
|
||||||
writeJSON: jest.fn(() => undefined),
|
ensureFile: jest.fn(() => undefined),
|
||||||
remove: jest.fn(() => undefined),
|
|
||||||
readJSON: jest.fn(() => ({})),
|
|
||||||
pathExists: jest.fn(() => true),
|
pathExists: jest.fn(() => true),
|
||||||
|
readFile: jest.fn((f) => ''),
|
||||||
|
readJSON: jest.fn(() => ({})),
|
||||||
|
remove: jest.fn(() => undefined),
|
||||||
|
writeFile: jest.fn(() => undefined),
|
||||||
|
writeJSON: jest.fn(() => undefined),
|
||||||
}));
|
}));
|
||||||
|
|
||||||
jest.mock('./utils/StoryIndexGenerator', () => {
|
jest.mock('./utils/StoryIndexGenerator', () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user