const path = require('path'); function getSmileImage() { return path.join(__dirname, '../sample/smile.png'); } function getCatVideo() { return path.join(__dirname, '../sample/cat.mp4'); } exports.getSmileImage = getSmileImage; exports.getCatVideo = getCatVideo;