EndemolShineGroup/serverless-test-utils

View on GitHub
src/util/getTmpFilePath.ts

Summary

Maintainability
A
0 mins
Test Coverage
import path from 'path';

import getTmpDirPath from './getTmpDirPath';

export default (fileName: string) => {
  return path.join(getTmpDirPath(), fileName);
};