Include 3 parts in each test name
(1) What is being tested? For example, the ProductsService.addNewProduct method
(3) What is the expected result? For example, the new product is not approved
describe('Add new product', () => {
it('Should return the right status', () => {
const newProduct = new ProductService().add(...);
expect(newProduct.status).to.equal('pendingApproval');
});