Files
cypress/system-tests/test/selectFile_spec.js
Blue F 6d10a7faff feat: cy.selectFile() (#19332)
* feat: cy.attachFile with passed-in contents (#18825)
* feat: attachFile string shorthands (#19045)
* feat: Add drag-n-drop support (#19213)
* Remove cypress-file-upload
2021-12-22 09:03:27 -08:00

18 lines
564 B
JavaScript

const systemTests = require('../lib/system-tests').default
// While these tests are fairly simple and could be normal cypress tests,
// they also depend on 3rd party libraries used only for the test that we
// don't want to add to cypress' dependencies. They are therefore e2e tests,
// which can have their own package.json.
describe('selectFile', () => {
systemTests.setup()
it('works with 3rd party libraries', function () {
return systemTests.exec(this, {
project: 'selectFile',
snapshot: false,
expectedExitCode: 0,
})
})
})