2016-04-12 33 views
-1

我創建了karma.conf.js文件來運行測試,但它不工作和終端返回沒有有用的信息。沒有任何關於我的文檔可能引發錯誤的地方,沒有行號......我從2天以來一直在查看文件,無法找到原因。節點包karma沒有運行沒有信息

這是終端答案:

$ karma start karma.conf.js 
12 04 2016 16:08:09.101:ERROR [config]: Invalid config file! 
    SyntaxError: Unexpected string 
    at exports.runInThisContext (vm.js:53:16) 
    at Module._compile (module.js:414:25) 
    at Object.Module._extensions..js (module.js:442:10) 
    at Module.load (module.js:356:32) 
    at Function.Module._load (module.js:313:12) 
    at Module.require (module.js:366:17) 
    at require (module.js:385:17) 
    at Object.parseConfig (/Users/Bizarre/Desktop/Coding/Web/UHK/Course3/conFusion/node_modules/karma/lib/config.js:284:22) 
    at new Server (/Users/Bizarre/Desktop/Coding/Web/UHK/Course3/conFusion/node_modules/karma/lib/server.js:57:20) 
    at Object.exports.run (/Users/Bizarre/Desktop/Coding/Web/UHK/Course3/conFusion/node_modules/karma/lib/cli.js:243:7) 
    at requireCliAndRun (/usr/local/lib/node_modules/karma-cli/bin/karma:44:16) 
    at /usr/local/lib/node_modules/karma-cli/bin/karma:54:12 
    at /usr/local/lib/node_modules/karma-cli/node_modules/resolve/lib/async.js:44:21 
    at ondir (/usr/local/lib/node_modules/karma-cli/node_modules/resolve/lib/async.js:187:31) 
    at /usr/local/lib/node_modules/karma-cli/node_modules/resolve/lib/async.js:153:39 
    at onex (/usr/local/lib/node_modules/karma-cli/node_modules/resolve/lib/async.js:93:22) 

這是karma.conf.js文件:

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'], 

    // list of files/patterns to load in the browser 
     files: [ 
      'bower_components/angular/angular.js', 
      'bower_components/angular-resource/angular-resource.js', 
      'bower_components/angular-ui-router/release/angular-ui-router.js', 
      'bower_components/angular-mocks/angular-mocks.js', 
      'app/scripts/*.js' 
      'test/unit/**/*.js' 
     ], 

    // list of files to exclude 
     exclude: [ 
      'test/protractor.conf.js', 'test/e2e/*.js' 
     ], 

    // 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 any file changes 
     autoWatch: true, 

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

    // you can define custom flags 
     customLaunchers: { 
      'PhantomJS_custom': { 
       base: 'PhantomJS', 
       options: { 
        windowName: 'my-window', 
        settings: { 
         webSecurityEnabled: false 
        }, 
       }, 
       flags: ['--load-images=true'], 
       debug: true 
      } 
     }, 

     phantomjsLauncher: { 
      // Have phantomjs exit if a ResourceError is encountered (useful if karma exits without killing phantom) 
      exitOnResourceError: true 
     }, 

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

     // Concurrency level 
     // how many browser should be started simultaneously 
     concurrency: Infinity 

    }) 
}; 

回答

1

有一個逗號中的文件丟失:

// list of files/patterns to load in the browser 
     files: [ 
      'bower_components/angular/angular.js', 
      'bower_components/angular-resource/angular-resource.js', 
      'bower_components/angular-ui-router/release/angular-ui-router.js', 
      'bower_components/angular-mocks/angular-mocks.js', 
      'app/scripts/*.js', 
      'test/unit/**/*.js' 
     ] 

+0

謝謝!不敢相信我沒有看到它!也沒有任何意義,終端不提供任何線索,「意外的字符串」是 – Bizarre

+0

我也想到了一些大....:P :) ..它發生.. :) – Dreamweaver