How do I access the full JQuery library within my Karma E2E tests?
Asked
Active
Viewed 1,356 times
1 Answers
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