Cypress uses Mocha syntax where 'describe' defines a test suite and 'it' defines a test case inside it.
Step 2: Check each option
describe('Test suite', () => { it('Test case', () => { /* test code */ }) }) correctly uses 'describe' then 'it'. Options A, C, and D misuse or swap these functions.
Final Answer:
describe('Test suite', () => { it('Test case', () => { /* test code */ }) }) -> Option C
Quick Check:
Correct test block syntax = describe + it [OK]
Quick Trick:'describe' wraps suites, 'it' wraps test cases [OK]
Common Mistakes:
Swapping 'describe' and 'it'
Using non-existent functions like 'suite' or 'test'
Incorrect nesting of test blocks
Master "Basics and Setup" in Cypress
9 interactive learning modes - each teaches the same concept differently