You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.
I am trying to create tests on runtime using jasmine-data-provider. Below is a simple test which displays what is possible and helps avoid creating multiple tests.
const using = require('jasmine-data-provider');
const textValues = {
'test1' : { name : 'test1'},
'test2' : { name : 'test2'}
}
describe('Two tests in one file', function(){
using(textValues, function(data){
it('print each value', function(){
console.log(data.name);
}
}
}
When running it on sauce labs, it fails with invalid message. I am not sure if sauce labs support this kind of tests. Please help
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello,
I am trying to create tests on runtime using jasmine-data-provider. Below is a simple test which displays what is possible and helps avoid creating multiple tests.
When running it on sauce labs, it fails with invalid message. I am not sure if sauce labs support this kind of tests. Please help
The text was updated successfully, but these errors were encountered: