Cypress - File Operations
Given the following code snippet, what will be the result of the test?
cy.get('input[type=file]').selectFile('cypress/fixtures/document.pdf').then(() => {
cy.get('input[type=file]').should('have.value', '')
})