I've seen some tests written this way and I would like to know if anyone knows what is the name of this convention:
describe("users/domains/services/user-service", () => {
describe("UserService", () => {
describe(".create()", () => {
...
});
describe(".update()", () => {
...
});
// Static method
describe("#new()", () => {
...
});
});
});
If someone can help me I would be very grateful.