PhantomJS 不适用于 Angular2 项目中的 Karma

Posted

技术标签:

【中文标题】PhantomJS 不适用于 Angular2 项目中的 Karma【英文标题】:PhantomJS does not work with Karma in Angular2 project 【发布时间】:2017-03-08 00:33:30 【问题描述】:

我使用 angular cli (1.0.0-rc1.0.0) 创建了一个开箱即用的项目。然后我安装了 PhantomJS 插件(npm install karma-phantonjs-launcher)。 复制步骤:

    使用 angular2 cli 创建项目(ng new TestPhantomJS) 运行 npm install karma-phantonjs-launcher 在karma.conf文件中添加PhantomJS,即改成browsers: ['Chrome']这个browsers:['Chrome', 'PhantomJS']

Team City 集成的原因是我需要一个无头浏览器。 只要将 Chrome 指定为浏览器,使用 ng test 即可运行测试, 问题是当您尝试使用 PhantomJS 时。您将收到如下图所示的错误。我的研究表明,这与 PhantomJS 和 javascript 版本兼容性有关。但是,我还没有找到解决这个问题的方法。

有没有其他人遇到过这个问题并可能找到了解决方案?

我的 karma.conf

// Karma configuration file, see link for more information
// https://karma-runner.github.io/0.13/config/configuration-file.html

module.exports = function (config) 
  config.set(
    basePath: '',
    frameworks: ['jasmine', '@angular/cli'],
    plugins: [
      require('karma-jasmine'),
      require('karma-chrome-launcher'),
      require('karma-phantomjs-launcher'),
      require('karma-jasmine-html-reporter'),
      require('karma-coverage-istanbul-reporter'),
      require('@angular/cli/plugins/karma')
    ],
    client:
      clearContext: false // leave Jasmine Spec Runner output visible in browser
    ,
    files: [
       pattern: './src/test.ts', watched: false 
    ],
    preprocessors: 
      './src/test.ts': ['@angular/cli']
    ,
    mime: 
      'text/x-typescript': ['ts','tsx']
    ,
    coverageIstanbulReporter: 
      reports: [ 'html', 'lcovonly' ],
      fixWebpackSourcePaths: true
    ,
    angularCli: 
      environment: 'dev'
    ,
    reporters: config.angularCli && config.angularCli.codeCoverage
              ? ['progress', 'coverage-istanbul']
              : ['progress', 'kjhtml'],
    port: 9876,
    colors: true,
    logLevel: config.LOG_INFO,
    autoWatch: true,
    browsers: [ 'PhantomJS'],
    singleRun: false
  );
;

我的测试.ts

// This file is required by karma.conf.js and loads recursively all the .spec and framework files

import 'zone.js/dist/long-stack-trace-zone';
import 'zone.js/dist/proxy.js';
import 'zone.js/dist/sync-test';
import 'zone.js/dist/jasmine-patch';
import 'zone.js/dist/async-test';
import 'zone.js/dist/fake-async-test';
import  getTestBed  from '@angular/core/testing';
import 
  BrowserDynamicTestingModule,
  platformBrowserDynamicTesting
 from '@angular/platform-browser-dynamic/testing';

// Unfortunately there's no typing for the `__karma__` variable. Just declare it as any.
declare var __karma__: any;
declare var require: any;

// Prevent Karma from running prematurely.
__karma__.loaded = function () ;

// First, initialize the Angular testing environment.
getTestBed().initTestEnvironment(
  BrowserDynamicTestingModule,
  platformBrowserDynamicTesting()
);
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);
// Finally, start Karma to run the tests.
__karma__.start()

;

【问题讨论】:

您能向我们展示您的karma.conf.jstest.ts 文件吗?我们正在使用 PhantomJS,尽管我们在它当前工作之前遇到了问题。 @shusson ,我已经添加了我的 karma.conf 和 test.ts 。除了上述编辑之外,这些都是由 Angular cli“按原样”创建的。 尝试在test.tsmain.ts 中导入polyfills.tsimport './polyfills.ts'; 并将其从.angular-cli.json 中删除 afaik,你说得对,这是因为 phantomjs 不支持 ecmascript 2015。所以,我猜在 phantomjs 2.5 发布之前一直使用 chrome? 【参考方案1】:

由于 Chrome 现在(从 59 版开始)支持无头运行,因此没有理由再使用过时的 PhantomJS。除非您无法在目标机器上更新/安装 chrome。 如果您在 karma.conf 中包含了karma-chrome-launcher,您现在只需指定:

browsers: ['ChromeHeadless']

也可以通过ChromeCanaryChromeCanaryHeadless 使用Canary edition。

【讨论】:

【参考方案2】:

事实上,您不必等待 phantomjs 2.5 发布。

npm install --save-dev karma-phantomjs-launcher

karma.conf.js

在插件部分添加require('karma-phantomjs-launcher')PhantomJS 添加到浏览器

npm install --save intl

src/polyfill.ts 添加import 'intl';(在底部取消注释) 将 import "core-js/client/shim"; 添加到 Evergreen 要求部分 在 src/tsconfig.spec.json 中将目标设置为 es5。

参考:https://***.com/a/42539894/7683428

【讨论】:

尝试按照您的步骤进行操作。您究竟需要在哪里添加行 import "core-js/client/shim"; ?不完全确定您所说的常青部分是什么意思?? BROWSER POLYFILLS 部分,紧跟在// import 'core-js/es6/set';之后 感谢您,效果很好! core-js/client/shim 是我所缺少的【参考方案3】:

我目前的解决方法是将 es5 仅用于测试。

tsconfig.spec.json


    "compilerOptions": 
        ...
        "target": "es5",
        ...

.angular-cli.json


    "project": 
        "name": "client"
    ,
    "apps": [
        
            ...
            "tsconfig": "tsconfig.app.json",
            "testTsconfig": "tsconfig.spec.json",
            ...

【讨论】:

以上是关于PhantomJS 不适用于 Angular2 项目中的 Karma的主要内容,如果未能解决你的问题,请参考以下文章

page.set('content')不适用于phantomjs中的动态内容

Angular2 动画不适用于 ngIf

垂直滚动不适用于 HammerJS 和 Angular2

模型绑定不适用于angular2中的选择[重复]

Rxjs 过滤器运算符不适用于 Angular2 Observable

“ng2-CKEditor”节点模块不适用于打字稿[Angular2]