2020-09-25 11:50:57 +02:00
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
|
|
const configPath = './cypress.env.json';
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
if (fs.existsSync(configPath)) {
|
|
|
|
|
//file exists
|
|
|
|
|
console.log("Skips configuration as file already exists, run 'npm run config' to change your configuration.");
|
|
|
|
|
} else {
|
2020-09-25 12:01:40 +02:00
|
|
|
require('./config.js');
|
2020-09-25 11:50:57 +02:00
|
|
|
}
|
|
|
|
|
} catch(err) {
|
|
|
|
|
console.error(err)
|
|
|
|
|
}
|