Writing Unit Tests with Jest

What is the purpose of using 'it' instead of 'test' in these cases?
describe('User API', () => {
  it('creates a user', () => {
    // test code
  });
  
  it('updates user details', () => {
    // test code
  });
});
Next Question (7/20)