Skip to content

Commit

Permalink
fix: remove file extension in default makeConfig options condition
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrebb committed Sep 1, 2024
1 parent 42da861 commit c6e126e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/util/makeConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function loadProjectConfig (command, options, config) {
config.backstopConfigFileName = path.join(config.projectPath, customConfigPath);
}
} else {
config.backstopConfigFileName = path.join(config.projectPath, 'backstop.json');
config.backstopConfigFileName = path.join(config.projectPath, 'backstop');
}

let userConfig = {};
Expand Down

0 comments on commit c6e126e

Please sign in to comment.