mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-23 15:50:10 -06:00
* add standard linter to example project * lint bin/convert script * lint more js files, run linter pretest
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
var path = require('path')
|
|
|
|
module.exports = {
|
|
getPathToExample: function () {
|
|
return path.join(__dirname, '..', 'cypress', 'integration', 'example_spec.js')
|
|
}
|
|
}
|