Travis-CI build - PhantomJS error preventing QUnit tests from running

709 Views Asked by At

I have a repository with a simple js function and a QUnit test. I have attempted to integrate it with Travis-CI using a grunt task. Everything works fine locally but PhantomJS throws an error during the build process preventing my tests from running.

Build: https://travis-ci.org/DaveKingsnorth/ciSandbox/builds/40909225

Repo: https://github.com/DaveKingsnorth/ciSandbox

//.travis.yaml

language: node_js
node_js:
  - "0.11"
before_install: npm install -g grunt-cli
install: npm install

// Gruntfile.js

module.exports = function(grunt) {

  grunt.initConfig({
    pkg: '<json:package.json>',
    qunit: {
      src: ['test/**/*.html']
    }
  });

  grunt.loadNpmTasks('grunt-contrib-qunit');

  grunt.registerTask('test', ['qunit']);
  grunt.registerTask('default', 'qunit');

};

Error: Testing test/index.html PhantomJS threw an error:ERROR

/home/travis/build/DaveKingsnorth/ciSandbox/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: 4: /home/travis/build/DaveKingsnorth/ciSandbox/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: Syntax error: Unterminated quoted string 0 [ '/home/travis/build/DaveKingsnorth/ciSandbox/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: 4: /home/travis/build/DaveKingsnorth/ciSandbox/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: Syntax error: Unterminated quoted string' ] Warning: PhantomJS exited unexpectedly with exit code 2. Use --force to continue. Aborted due to warnings. The command "npm test" exited with 0. Done. Your build exited with 0.

0

There are 0 best solutions below