代码正在失败,因为它丢失了
pact-web
Pattern "C:/dist-web/pact-web.js" does not match any file.
这是因为你在用这个例子
karma.conf.js
引用
因果报应.conf.js
:
// if you are using this example to setup your own project
// load pact from the node_modules directory
'../../dist-web/pact-web.js',
// Example Using NPM package
// 'node_modules/@pact-foundation/pact-web/pact-web.js',
查看您的目录结构,注释以下行:
'../../dist-web/pact-web.js',
// 'node_modules/@pact-foundation/pact-web/pact-web.js',
应该能解决你的问题。
@pact-foundation/pact-web
是开发人员依赖项:
npm install --save-dev '@pact-foundation/pact-web'