我尝试对我的角度项目键入进行测试
ng test --browsers=PhantomJS
之前,我必须使用命令手动安装phantomjs
npm install phantomjs-prebuilt@2.1.16 -ignore-scripts
但是在ng test --br ...
之后,我收到此错误
23 05 2019 08:08:28.194:ERROR [config]:配置文件错误! TypeError [ERR_INVALID_ARG_TYPE]:“路径”参数必须为字符串类型。收到的类型对象 在validateString(internal / validators.js:125:11) 在Object.extname(path.js:1365:5) 在phantomJSExePath(/gui-build/node_modules/karma-phantomjs-launcher/index.js:18:12) 在对象。 (/gui-build/node_modules/karma-phantomjs-launcher/index.js:107:12) 在Module._compile(内部/模块/cjs/loader.js:701:30) 在Object.Module._extensions..js(内部/模块/cjs/loader.js:712:10) 在Module.load(internal / modules / cjs / loader.js:600:32) 在tryModuleLoad(内部/模块/cjs/loader.js:539:12) 在Function.Module._load(内部/模块/cjs/loader.js:531:3) 在Module.require(internal / modules / cjs / loader.js:637:17) 在需要时(internal / modules / cjs / helpers.js:22:18)。...
我该如何解决?
环境:Angular CLI:7.3.9 节点:10.15.3 操作系统:Linux x64 角度:7.2.15
karma.conf.js
// Karma configuration
// Generated on Wed Oct 24 2018 11:15:29 GMT+0200 (Central European Daylight Time)
const path = require('path');
module.exports = function(config) {
config.set({
files: [
'src/**/*.js',
'src/test/**/*.js'
],
basePath: '',
frameworks: ['jasmine'],
preprocessors: {
'!(test)/**/*.js': 'coverage'
},
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma')
],
client: {
clearContext: false
},
coverageIstanbulReporter: {
reports: [ 'html', 'lcovonly', 'text-summary' ],
dir: path.join(__dirname, 'coverage'),
skipFilesWithNoCoverage: true,
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev',
config: '@angular/cli'
},
// list of files to exclude
exclude: [
],
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['Chrome'],
singleRun: true,
concurrency: Infinity
})
} ;
package.json
{
"name": "gui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"release": "ng build --prod",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"version": "git add -A package.json && git commit",
"postversion": "rm -rf build/temp"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.15",
"@angular/common": "^7.2.15",
"@angular/compiler": "^7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/router": "^7.2.15",
"@ng-bootstrap/ng-bootstrap": "^3.3.0",
"core-js": "^2.5.4",
"font-awesome": "^4.7.0",
"intl": "^1.2.5",
"lodash": "^4.17.11",
"rxjs": "^6.5.2",
"tslib": "^1.9.0",
"zone.js": "~0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "~7.3.9",
"@angular/compiler-cli": "^7.2.15",
"@angular/language-service": "^7.2.15",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "~4.2.1",
"jasmine-core": "^2.99.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.4",
"phantomjs-prebuilt": "^2.1.16",
"protractor": "~5.3.0",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~3.2.4"
}
}
我该如何解决?预先感谢
答案 0 :(得分:1)
我能够通过从"karma-phantomjs-launcher"
中删除karma.conf.js
来解决此问题
注意:之所以能够做到这一点,是因为我们没有使用phantomjs
,据我所知,SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET search_path = public, pg_catalog;
SET default_tablespace = ' ';
SET default_with_oids = false;
ALTER TABLE public.pricemessage_archive OWNER TO postgres;
COPY pricemessage_archive (event_id, event_date, description, device_id, toll_zone, price) FROM stdin;
103462022 2017-03-15 22:41:02-05 Price VERIFIED V35ES02A Z35ES02 0.00
103462023 2017-03-15 22:41:02-05 Price VERIFIED V35EN13 Z35EN01 0.00
已经过时了一段时间。
答案 1 :(得分:0)
尝试一下:
browsers: ['Chrome', 'PhantomJS'], // HERE MISSING 'PhantonJS'
karma.conf.js
// Karma configuration
// Generated on Wed Oct 24 2018 11:15:29 GMT+0200 (Central European Daylight Time)
const path = require('path');
module.exports = function(config) {
config.set({
files: [
'src/**/*.js',
'src/test/**/*.js'
],
basePath: '',
frameworks: ['jasmine'],
preprocessors: {
'!(test)/**/*.js': 'coverage'
},
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-coverage-istanbul-reporter'),
require('@angular/cli/plugins/karma')
],
client: {
clearContext: false
},
coverageIstanbulReporter: {
reports: [ 'html', 'lcovonly', 'text-summary' ],
dir: path.join(__dirname, 'coverage'),
skipFilesWithNoCoverage: true,
fixWebpackSourcePaths: true
},
angularCli: {
environment: 'dev',
config: '@angular/cli'
},
// list of files to exclude
exclude: [
],
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['Chrome', 'PhantomJS'], // HERE MISSING 'PhantonJS'
singleRun: true,
concurrency: Infinity
})
} ;
答案 2 :(得分:0)
尝试重新安装karma-phantomjs-launcher和phantomjs-prebuilt,它对我有用...