While running jasmine tests, I am getting the following deprecation warning:
Setting randomizeTests directly is deprecated, please use the random option in configure
I check the code and as mentioned in readme file also that we can pass config object to jasmine.loadConfig method.
This needs to be changed for new versions of jasmine and we have to use configure method.
Like this
jasmine.env.configure(options.config)
While running jasmine tests, I am getting the following deprecation warning:
Setting randomizeTests directly is deprecated, please use the random option in
configureI check the code and as mentioned in readme file also that we can pass config object to jasmine.loadConfig method.
This needs to be changed for new versions of jasmine and we have to use configure method.
Like this
jasmine.env.configure(options.config)