This is a polyfill for function.prototype.bind which is missing from PhantomJS.
npm install --save-dev phantomjs-polyfill
require('phantomjs-polyfill')
Include the polyfill directly in the files list of your karma.conf
...
files: [
'./node_modules/phantomjs-polyfill/bind-polyfill.js',
...
]
...