I need to know if there is a way to include or use a beforeAll function, or something similar, so I can login to my application and then start testing.
Right now I\'m pu
please use below code and configure your setting in beforeAll statement.
describe("Top", function() { beforeAll(function() { console.log("Example 1 Setup"); }); it('xyz',function(){ console.log('Hi!') }); });