0

How do I access the full JQuery library within my Karma E2E tests?

Charles
  • 50,943
  • 13
  • 104
  • 142
Ketan
  • 5,861
  • 3
  • 32
  • 39

1 Answers1

4

Are you using a config file? Just include it like any other:

files = [
  JASMINE,
  JASMINE_ADAPTER,
  'angular.js',
  'jquery.js',
  // etc...
];
Terry
  • 14,099
  • 9
  • 56
  • 84
  • Ok I will try it tomorrow. But will it automatically replace the built in library just like it does in the regular code? – Ketan May 28 '13 at 23:54