Add skipped download integration test

main
Mike Fix 6 years ago
parent 0df0f68756
commit 0ff4813bb5

@ -19,4 +19,23 @@ describe('Basic', () => {
cy.contains('#container', '%')
})
/*
* This test should only be run locally since it actually downloads a file
* for verification.
*/
it.skip('Should download a PNGs and SVGs', () => {
cy.visit('/')
editorVisible()
cy.contains('span[type="button"]', 'Save Image').click()
cy.get('#downshift-2-item-0').click()
cy.wait(1000)
cy.contains('span[type="button"]', 'Save Image').click()
cy.get('#downshift-2-item-1').click()
cy.wait(1000)
})
})

Loading…
Cancel
Save