mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
93468211d6
* chore: update eslint * chore: update rules and style * chore: aling formatting * chore: update ci rules * chore: aling formatting * chore: aling formatting
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import * as fs from 'fs-extra';
|
|
|
|
export function expectFileToExist(fileName: string) {
|
|
return new Promise((resolve, reject) => {
|
|
fs.exists(fileName, (exist) => {
|
|
if (exist) {
|
|
resolve(exist);
|
|
} else {
|
|
reject(new Error(`File ${fileName} was expected to exist but not found...`));
|
|
}
|
|
});
|
|
});
|
|
}
|