mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-12 17:59:53 -06:00
8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
getPathToE2E () {
|
|
return path.join(__dirname, '..', 'cypress', 'e2e')
|
|
},
|
|
}
|