使用以下express配置运行jest-puppeteer:
import express from "express";
import path from "path";
import webpack from 'webpack';
import config from '../webpack.config';
const port = 3200;
const app = express();
const compiler = webpack(config);
app.use(require('webpack-dev-middleware')(compiler, {
noInfo: true,
publicPath: config.output.publicPath
}));
app.listen(port, function (error) {
if(error) console.log(error);
});
通过以下简单测试:
describe('Google', () => {
beforeAll(async () => {
await page.goto('http://localhost:3200')
})
it('should display "demo" text on page', async (done) => {
await expect(page).toMatch('Your cart');
done();
});
});
jest-puppeteer配置如下:
module.exports = {
server: {
command: './node_modules/babel-watch/babel-watch.js ./test/server.js',
port: 3200,
},
};
我的Bitbucket管道遇到了麻烦;所有测试都通过了,但命令从未退出
卡住的原因是什么? webpack conf是否参与其中?
只需在信号量上运行完全相同的测试脚本,一切就可以顺利进行
非常感谢任何建议的答案