Files
cypress/system-tests/test/selectFile_spec.js
2022-01-14 10:37:29 -06: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,
})
})
})