mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-28 02:39:31 -05:00
12 lines
196 B
JavaScript
12 lines
196 B
JavaScript
const path = require('path')
|
|
|
|
function file (name) {
|
|
return `file://${path.join(__dirname, '..', 'dist', name)}`
|
|
}
|
|
|
|
module.exports = {
|
|
getPathToIndex () {
|
|
return file('index.html')
|
|
},
|
|
}
|