File size: 283 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 | describe('form setValueAsyncStrictMode', () => {
it('should set async input value correctly', () => {
cy.visit('http://localhost:3000/setValueAsyncStrictMode');
cy.wait(100);
cy.get('#submit').click();
cy.get('p').contains('["test","A","B","C","D"]');
});
});
|