boyka-framework
boyka-framework copied to clipboard
⭐ New feature: Create Test runner for running boyka tests
📗 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', () -> {
});
});