My config.js looks like this
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: ['test1.js', 'test2.js'],
framework: 'jasmine2'
};
As you can see I have 2 test files, what I want to do is to use a single variable across all the specs.
How can I achieve it ?