no promise chaining

This commit is contained in:
Norbert de Langen 2022-10-18 14:15:30 +02:00
parent f70f9245bd
commit ad98b5b547
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 9 additions and 8 deletions

View File

@ -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;
}) || [] }) || []
); );

View File

@ -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', () => {