javascript - Jasmine 测试在 Chrome 和 Firefox 中通过,但在 PhantomJS 中失败

标签 javascript unit-testing jasmine karma-jasmine

我正在使用 React 构建一个基本的博客应用程序。我正在使用 Jasmine 和 Karma 来运行我的前端测试。我启动并运行了第一个测试,它在 Chrome (Chromium) 和 Firefox 中通过了测试,但是当它在 PhantomJS 中运行时,我收到以下错误:

PhantomJS 1.9.8 (Linux 0.0.0) ERROR
  TypeError: 'undefined' is not a function (evaluating 'ReactElementValidator.createElement.bind(
          null,
          type
        )')
  at /home/michael/repository/short-stories/test/karma_tests/story_test.js:1742

我的测试文件如下所示:

var React = require('react/addons');
var Story = require('../../app/js/components/story.jsx');
var TestUtils = React.addons.TestUtils;
var testUtilsAdditions = require('react-testutils-additions');

  describe('Story component', function () {
    var component;

    beforeEach(function () {
      component = TestUtils.renderIntoDocument(React.createElement('story'));
      component.props.storyTitle = 'front end test title';
      component.props.author = 'front end author';
      component.props.storyText = 'front end story text';
    });

    it('should display a story', function () {
      expect(component.props).toBeDefined();
      expect(component.props.storyTitle).toBeDefined();
      expect(component.props.storyTitle).toBe('front end test title');
      expect(component.props.author).toBe('front end author');
      expect(component.props.storyText).toBe('front end story text')
    });

  });

我尝试删除我的 node_modules,清除 npm 缓存并安装 npm,但没有解决问题。我不确定我的测试如何在 Firefox 和 Chrome 中通过,但在 PhantomJS 中却没有。你可以在这里看到完整的项目:https://github.com/mrbgit/short-stories .让我知道是否有更多信息可以提供帮助。任何帮助表示赞赏。谢谢!

最佳答案

PhantomJS 使用相当旧的 Qt-Webkit 版本,不提供 Function.prototype.bind .这是很多图书馆的问题,所以 polyfill NPM module called 'phantomjs-polyfill'可用。

如果您不想使用 NPM 模块(如果您正在测试尚未与 browserify/webpack 捆绑的浏览器站点),则 MDN 上提供了以下 bind 的 polyfill页面,你可以自己附加它:

if (!Function.prototype.bind) {
  Function.prototype.bind = function(oThis) {
    if (typeof this !== 'function') {
      // closest thing possible to the ECMAScript 5
      // internal IsCallable function
      throw new TypeError('Function.prototype.bind - what is trying to be bound is not callable');
    }

    var aArgs   = Array.prototype.slice.call(arguments, 1),
        fToBind = this,
        fNOP    = function() {},
        fBound  = function() {
          return fToBind.apply(this instanceof fNOP
                 ? this
                 : oThis,
                 aArgs.concat(Array.prototype.slice.call(arguments)));
        };

    fNOP.prototype = this.prototype;
    fBound.prototype = new fNOP();

    return fBound;
  };
}

关于javascript - Jasmine 测试在 Chrome 和 Firefox 中通过,但在 PhantomJS 中失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31348032/

相关文章:

javascript - 如何让我的图像在 div/tab/ul 容器内的 "collage style"中自动对齐?

javascript - 防止跳回到屏幕顶部 jQuery animate

java - Mockito:argThat 用于采用多个参数的方法

unit-testing - Clojure 中的单元测试局部函数(letfn)?

javascript - $httpBackend.flush 在服务抛出错误时失败

angular - 无法使用 typescript 和 Angular 为 Jasmine 添加自定义匹配器

javascript - Ag-grid - 没有详细数据时,主/详细隐藏人字形图标

javascript - 剑道网格 : Retaining navigational cell after a datasource sync

unit-testing - 在 Racket 中通过一次测试检查多个输出

javascript - Angular httpBackend : No pending request to flush