forked from NaturalIntelligence/cytorus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
paths.js
24 lines (19 loc) · 791 Bytes
/
paths.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
global.__projRootDir = process.cwd();
//Absolute paths are required to load a module from project root in plugin for processing
const WD = ".cytorus/";
const paths = {
WS : process.cwd(), //Project root; User's workspace
WD : WD, //Cytorus workspace in user's workspace
cli : WD + "cli.json",
report : {
minimal : WD + "result/minimal/",
detailed : WD + "result/detail/"
},
serialized_feature : WD + "featureObj.json",
//Cypress can read input test file from "cypress/integration" only. And the folder should not be hidden like ".cytorus"
cache : "cypress/integration/cytorus-cache/",
features : "cypress/integration/features/",
projConfigFileName: "cytorus.config",
stats: WD + "result/stats.json",
};
module.exports = paths;