UNPKG

suman-test-projects

Version:
45 lines (25 loc) 701 B
// ************************************************************************************************************************* // 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 { } };