I have a global variable defined in my main template, which I use to store information bits from the back end, such as the environment context path. I can’t move that variable inside a service.
How can I expose that variable to Karma when I run the unit tests?
Advertisement
Answer
You either declare that global variable within your test file:
JavaScript
x
6
1
var global = "something";
2
3
describe('Your test suit', function() {
4
5
});
6
or add a Javascript file where it’s defined to your karma.conf.js
file:
JavaScript
1
6
1
// list of files / patterns to load in the browser
2
files: [
3
,
4
'file-containing-the-global-variable.js'
5
],
6