我正在使用节点和 puppeteer 加载页面,获取其内容,然后创建屏幕截图。在运行功能结束时,我有以下几行
var content = fs.writeFileSync(outputFilePath, processedContent);
var screenshot = page.screenshot({path: '../output/whatever.png', fullPage:true})
browser.close();
这在运行节点应用程序时有效。对于测试,我正在使用 JEST 并且在尝试运行检查屏幕截图的 JEST 测试时:
it('Run should take a screenshot', async() => {
const runResult = await run();
const screenshot = fs.readFileSync('/app/output/whatever.png');
expect(screenshot).toBeTruthy();
})
我收到以下错误 ENOENT: no such file or directory, open '/app/output/whatever.png'
我很难理解为什么在正常的应用程序流程中程序在运行时会创建文件,但在测试中却没有。作为附加信息,整个事情在 Docker 容器中运行