'saucelabs-jasmine': {
all: {
options: {
username: 'username', // if not provided it'll default to ENV SAUCE_USERNAME (if applicable)
key: 'key', // if not provided it'll default to ENV SAUCE_ACCESS_KEY (if applicable)
urls: ['http://127.0.0.1:8080/_SpecRunner.html'],
browsers: [{
browserName: 'chrome'
}, {
browserName: 'internet explorer',
platform: 'Windows 2012',
version: '10'
}]
}
}
}
I'm using jasmine 2 with jasmine.getEnv().addReporter(new jasmine.JSReporter2());`` andjasmine.getJSReport ()` gives me an output.
Any hints on what I am doing wrong?
Huh, no idea. Check out tasks/saucelabs.js, we use the sauce-tunnel npm module there. Maybe running that yourself, or with verbose logging on can highlight the issue.
Hello, I'm trying to get jasmine working. But everytime I get the following output
here is my config:
I'm using jasmine 2 with
jasmine.getEnv().addReporter(new jasmine.JSReporter2());`` and
jasmine.getJSReport ()` gives me an output. Any hints on what I am doing wrong?