12345678910111213 |
- describe('dashboard-ui', () => {
- beforeEach(() => {
- cy.visit('/dashboard-ui')
- cy.get('.uppy-Dashboard-input:first').as('file-input')
- })
- it('should render thumbnails', () => {
- cy.get('@file-input').selectFile(['cypress/fixtures/images/cat.jpg', 'cypress/fixtures/images/traffic.jpg'], { force:true })
- cy.get('.uppy-Dashboard-Item-previewImg')
- .should('have.length', 2)
- .each((element) => expect(element).attr('src').to.include('blob:'))
- })
- })
|