2017-07-26 123 views
0

我想使用pactJS并生成协议。错误:没有提供“框架:协议”

我使用的业力/茉莉运行我的测试..

下面是我的package.json

{ 
    "name": "andriod-pact", 
    "version": "1.0.0", 
    "description": "This is a microservice that is one of the two consumers of 
the provider microservice", 
    "main": "index.js", 
    "scripts": { 
    "test": "echo \"Error: no test specified\" && exit 1" 
}, 
    "author": "", 
    "license": "ISC", 
    "devDependencies": { 
    "jasmine": "^2.6.0", 
    "karma": "^1.7.0", 
    "karma-phantomjs-launcher": "^1.0.4", 
    "pact": "^2.6.0" 
} 
} 

这是我karma.conf文件

//噶配置 //生成时间2017年7月25日15:32:06 GMT + 0200(W. Europe Daylight Time)

module.exports = function(config) { 
     config.set({ 

     // base path that will be used to resolve all patterns (eg. files, exclude) 
     basePath: '', 

     // frameworks to use 
     // available frameworks: https://npmjs.org/browse/keyword/karma-adapter 
     frameworks: ['jasmine', 'pact'], 

     // list of files/patterns to load in the browser 
     files: [ 
     '../../dist/pact-web.js', 
     'src/test/js/*.js' 
     ], 


     // list of files to exclude 
     exclude: [ 
     ], 


     // preprocess matching files before serving them to the browser 
     // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor 
     preprocessors: { 
     }, 


     // test results reporter to use 
     // possible values: 'dots', 'progress' 
     // available reporters: https://npmjs.org/browse/keyword/karma-reporter 
     reporters: ['progress'], 


     // web server port 
     port: 9876, 


     // enable/disable colors in the output (reporters and logs) 
     colors: true, 


     // level of logging 
     // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG 
     logLevel: config.LOG_INFO, 


     // enable/disable watching file and executing tests whenever any file changes 
     autoWatch: true, 


     // start these browsers 
     // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher 
     browsers: ['PhantomJS_without_security'], 

     customLaunchers: { 
      PhantomJS_without_security: { 
      base: 'PhantomJS', 
      flags: ['--web-security=no'] 
      } 
     }, 

     // Continuous Integration mode 
     // if true, Karma captures browsers, runs the tests and exits 
     singleRun: false, 

     // Concurrency level 
     // how many browser should be started simultaneous 
     concurrency: Infinity 
     }) 
    } 

但是当我运行使用因缘开始karma.conf我的测试

我得到这个错误

Error: No provider for "framework:pact"! (Resolving: framework:pact) 
    at error (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\di\lib\injector.js:22:12) 
    at Object.parent.get (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\di\lib\injector.js:9:13) 
    at get (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\di\lib\injector.js:54:19) 
    at C:\PactDemoMaster\PactDemoAndroidApp\node_modules\karma\lib\server.js:143:20 
    at Array.forEach (native) 
    at Server._start (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\karma\lib\server.js:142:21) 
    at invoke (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\di\lib\injector.js:75:15) 
    at Server.start (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\karma\lib\server.js:103:18) 
    at Object.exports.run (C:\PactDemoMaster\PactDemoAndroidApp\node_modules\karma\lib\cli.js:280:26) 
    at requireCliAndRun (C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\bin\karma:44:16) 
    at C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\bin\karma:54:12 
    at C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\node_modules\resolve\lib\async.js:45:21 
    at ondir (C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\node_modules\resolve\lib\async.js:196:27) 
    at C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\node_modules\resolve\lib\async.js:163:39 
    at onex (C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\node_modules\resolve\lib\async.js:104:32) 
    at C:\Users\aajai_000\AppData\Roaming\npm\node_modules\karma-cli\node_modules\resolve\lib\async.js:24:24 

如果有人能指出我的明显的问题...

问候

回答

0

您错过了karma-pact插件,它不会默认使用标准协议依赖项。

请参阅https://github.com/pact-foundation/karma-pact

+0

感谢马特的回来...... 但在这之后,我收到以下错误 ' 错误:命令失败:TASKKILL/F/T/PID 9488 错误:过程 “9488”未找到。 在checkExecSyncError(child_process.js:486:13) 在Object.execSync(child_process.js:526:13) 在Server.stop(C:\ PactDemoMaster \ PactDemoAndroidApp \ node_modules \ @协议-基础\协议节点\ src \ server.js:138:7) at Server.delete(C:\ PactDemoMaster \ PactDemoAndroidApp \ node_modules \ @ pact-foundation \ pact-node \ src \ server.js:155:14) ' – abhishek

+0

Can you请提出这个作为一个错误约定Js回购?看起来像Windows相关的问题。但是,业力协约插件似乎开始启动。 –