@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
19 lines (13 loc) • 349 B
JavaScript
describe('my app', function() {
before(function() {
console.log('inner before hook');
});
describe('has feature xyz that', function() {
it('should to something', function() {
console.log('inner test block');
});
});
after(function() {
console.log('inner after hook');
});
});