2017-07-26 124 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相關的問題。但是,業力協約插件似乎開始啓動。 –