I am trying to addContext to a test using mochawesome but it is not doing anything, it should be adding a context after I run the test.
const addContext = require("mochawesome/addContext");
afterEach(function () {
addContext(this, 'simple string');
})
describe("Iamgenes ", function () {
it.only("Prueba 2", () => {
});
});