mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +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
|
||||
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;
|
||||
}) || []
|
||||
);
|
||||
|
@ -53,15 +53,15 @@ jest.mock('@storybook/telemetry', () => ({
|
||||
}));
|
||||
jest.mock('fs-extra', () => ({
|
||||
copy: jest.fn(() => undefined),
|
||||
ensureFile: jest.fn(() => undefined),
|
||||
writeFile: jest.fn(() => undefined),
|
||||
readFile: jest.fn((f) => ''),
|
||||
emptyDir: jest.fn(() => undefined),
|
||||
ensureDir: jest.fn(() => undefined),
|
||||
writeJSON: jest.fn(() => undefined),
|
||||
remove: jest.fn(() => undefined),
|
||||
readJSON: jest.fn(() => ({})),
|
||||
ensureDir: jest.fn(() => true),
|
||||
ensureFile: jest.fn(() => undefined),
|
||||
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', () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user