Can anyone help me out how to run spec in order, because the application which i am working has many specs and when i use command
'specs': '*.js',
all specs are executed but not in the order which i have written them, i don't want to special all my specs name in single spec like for example
'specs' : [ 'test1.js','test2.js',.... ]
because i have lots of specs. Can anyone help me with how to run specs in order? i want
test1.js to be executed 1st, test2.js to be executed 2nd and so on