Skip to content

Instantly share code, notes, and snippets.

View jaimefps's full-sized avatar

Jaime Pericás jaimefps

  • Cypress.io
  • Portland , OR
View GitHub Profile
@ZwaarContrast
ZwaarContrast / Dropzone.js
Last active May 2, 2023 20:31
Using cypress with react-dropzone to upload a file.
// your react component
import * as React from 'react'
import Dropzone from 'react-dropzone'
// apply your own styling and stuff, should probably also show the files when uploaded
const Upload = () => {
return (<Dropzone data-cy="drag-and-drop">Drag and Drop here</Dropzone>)
}
export default Upload