Command
it("should do something", () => { ... })Explanation
it blocks define individual test cases with descriptive names and test logic.
Examples
Basic test case
it("should return true", () => { ... })Error handling test
it("should handle errors gracefully", () => { ... })