【发布时间】:2019-06-04 12:33:33
【问题描述】:
我正在开发一个类似于 live-reload/browser-sync 的 nodejs 库,并且我正在使用 jest-puppeteer 进行自动化测试。
当我手动测试我的库、打开浏览器并修改文件时,瞧,页面会刷新(通过注入的代码,当它通过 websocket 接收到信号时运行 location.reload( true )) .
但是当我用 Jest 运行测试时,Puppeteer 似乎没有得到刷新。
// "reloader" is my library
import reloader from './../src/index';
import * as fs from 'fs';
import { promisify } from 'util';
const read = promisify( fs.readFile )
const write = promisify( fs.writeFile )
test('1. Refresh when file changes', async () => {
const server = await reloader( { dir: 'test/01' } );
await page.goto( 'http://localhost:' + server.port );
// This test passes
await expect( page.title()).resolves.toMatch( 'Old title' );
// Read and modify index.html to generate a refresh
const file = 'test/01/index.html'
const content = await read( file, 'utf8' );
await write( file, content.replace( 'Old title', 'New title' ) );
// Wait the page to refresh
await page.waitForNavigation( { waitUntil: 'networkidle2' } )
// This test doesn't pass
// Still receiving "Old title"
await expect( page.title()).resolves.toMatch( 'New title' );
// Undo the changes
write( file, content );
});
在最后一次测试中,我没有收到New title(在index.html 文件中正确写入),而是收到Old title
【问题讨论】:
标签: javascript jestjs puppeteer page-refresh jest-puppeteer