2017-01-05 8 views
-1

「カルマスタート」を実行するとChromeブラウザが開き、グラフィックが表示されません。私はコンソールでしか見ることができません。誰かが私を助けることができます。私は開いたままにしておきます。 ありがとうございます。カルマとクロム

マイファイルkarma.conf.js:

'use strict'; 
var path = require('path'); 
var conf = require('./gulp/conf'); 
var _ = require('lodash'); 
var wiredep = require('wiredep'); 
var pathSrcHtml = [ 
path.join(conf.paths.src, '/**/*.html') 
]; 

function listFiles() { 
var wiredepOptions = _.extend({}, conf.wiredep, { 
dependencies: true, 
devDependencies: true 
}); 
var patterns = wiredep(wiredepOptions).js 
.concat([ 
    path.join(conf.paths.src, '/app/**/*.module.js'), 
    path.join(conf.paths.src, '/app/**/*.js'), 
    path.join(conf.paths.src, '/**/*.spec.js'), 
    path.join(conf.paths.src, '/**/*.mock.js'), 
]) 
.concat(pathSrcHtml); 

var files = patterns.map(function(pattern) { 
return { 
    pattern: pattern 
}; 
}); 
files.push({ 
pattern: path.join(conf.paths.src, '/assets/**/*'), 
included: false, 
served: true, 
watched: false 
}); 
return files; 
} 

module.exports = function(config) { 

var configuration = { 
files: listFiles(), 

singleRun: true, 

autoWatch: false, 

ngHtml2JsPreprocessor: { 
    stripPrefix: conf.paths.src + '/', 
    moduleName: '01' 
}, 

logLevel: 'WARN', 

frameworks: ['phantomjs-shim', 'jasmine', 'angular-filesort'], 

angularFilesort: { 
    whitelist: [path.join(conf.paths.src, '/**/!(*.html|*.spec|*.mock).js')] 
}, 

browsers: ['Chrome', 'Chrome_without_security'], 

plugins: [ 
    'karma-chrome-launcher', 
    'karma-phantomjs-launcher', 
    'karma-angular-filesort', 
    'karma-phantomjs-shim', 
    'karma-coverage', 
    'karma-jasmine', 
    'karma-ng-html2js-preprocessor' 
], 

coverageReporter: { 
    type: 'html', 
    dir: 'coverage/' 
}, 

reporters: ['progress'], 

proxies: { 
    '/assets/': path.join('/base/', conf.paths.src, '/assets/') 
} 
}; 
configuration.preprocessors = {}; 
pathSrcHtml.forEach(function(path) { 
configuration.preprocessors[path] = ['ng-html2js']; 
}); 
configuration.customLaunchers = { 
Chrome_without_security: { 
    base: 'Chrome', 
    flags: ['--disable-web-security'] 
} 
}; 
config.set(configuration); 
}; 

答えて

0

私は最終的にそれを発見しました。ただ、そのインデックスを開く

"/index.htmlが報道/ Chrome55.0.2883する(Mac OS X 10.12.2)"

: "ゴクゴクテスト" を実行すると、中に(私のプロジェクトのパス内の)ローカルに作成されます。 htmlで統計情報を表示します。

関連する問題