suman-watch-plugins
Version:
Plugins to be used with suman-watch utilities.
45 lines (25 loc) • 701 B
JavaScript
// *************************************************************************************************************************
// this file allows you to create constaints for the Suman test runner
// it allows you to prevent two particular processes from running at the same time, to prevent unwanted interaction
// ************************************************************************************************************************
//example:
/*
module.exports = () => {
return {
A: {
testPath: '',
obstructs: [],
estimatedTimeInSeconds: 500
},
B: {
testPath: '',
obstructs: [],
estimatedTimeInSeconds: 500
}
}
};
*/
module.exports = () => {
return {
}
};