Remove tests of internal function now its behaviour has been verified

This commit is contained in:
Sam Partington
2020-06-26 14:46:53 +01:00
parent f8c87948ab
commit 7c00663f08
6 changed files with 3 additions and 25 deletions

View File

@@ -254,7 +254,7 @@ async function initConfig(): Promise<Config> {
return config;
}
export function isLocal(configPath: string): boolean {
function isLocal(configPath: string): boolean {
// If the path starts with ./, look locally
if (configPath.indexOf("./") === 0) {
return true;