Using webdriverio mocha, I want to add meta data at suite level. #2611
Unanswered
efrenette11
asked this question in
Questions & Support
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Giving this, how can I add a meta data on the context and not on the test (it)
addLink work inside it but does not work on context. How can I do that.
describe('A test suites template @smoke', function () {
context('given an authenticated user', () => {
before(async () => {
addLink('https://dev.example.com/', 'PATATE');
});
});
});
Beta Was this translation helpful? Give feedback.
All reactions