使用以下快速配置运行 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?
只需在信号量上运行相同的测试脚本,一切正常
非常感谢任何建议的答案