Skip to content

Commit

Permalink
feat: look for configs in format testplane.config.{ts,js,cts,cjs}
Browse files Browse the repository at this point in the history
  • Loading branch information
DudaGod committed Jul 10, 2024
1 parent 1d9a21c commit 1f08b88
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/config/defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,13 @@ module.exports = {
passive: false,
};

module.exports.configPaths = [".testplane.conf.ts", ".testplane.conf.js", ".hermione.conf.ts", ".hermione.conf.js"];
module.exports.configPaths = [
".testplane.conf.ts",
".testplane.conf.js",
"testplane.config.ts",
"testplane.config.js",
"testplane.config.cts",
"testplane.config.cjs",
".hermione.conf.ts",
".hermione.conf.js",
];

0 comments on commit 1f08b88

Please sign in to comment.