If you want to use jQuery in your test (I think you use karma), you must include jquery in your k file aram.conf.js. For instance:
module.exports = function(config) {
config.set({
files: [
'app/bower_components/jquery/jquery.js',
.....
],
....
source
share