Jasmine tests - Order

Holger Peters
Tera Contributor

Heho,

 

are Jasmine tests (3.1) in the Servicenow implementation ordered? 

How can I check the instance configuration on the Instance?

 

BR

1 REPLY 1

Justin Wood
ServiceNow Employee
ServiceNow Employee
@Holger Peters  IT tests are random by default.  If you would like them to run in order - add this to the end of your script step in place of 'jasmine.getEnv().execute()':
var
env = jasmine.getEnv();
env.randomizeTests(false);
env.execute();