Cypress - Writing Tests
Given the following Cypress test code, what will be the test name shown in the test report?
describe('Login Page', () => {
it('accepts valid credentials', () => {
// test steps
})
})