boyka-framework icon indicating copy to clipboard operation
boyka-framework copied to clipboard

⭐ New feature: Create Test runner for running boyka tests

Open mfaisalkhatri opened this issue 1 year ago • 0 comments

📗 Description of the new feature request?

Currently, there is no custom runner for running tests using boyka framework. We are depended on TestNG to run the tests. It is suggested to create a Custom runner that will run the tests and print the log in the console as well in headful/headless state.

🚧 Scenario where this would be used?

Running the tests

💁 Supporting information

beforeDescribe();
afterDescribe();
describe ('Describe name', () -> {
  beforeIt();
  afterIt();
  it('Test name', () -> {

  });
  it('Test Name 2', () -> {

  });
});

mfaisalkhatri avatar Nov 14 '23 15:11 mfaisalkhatri