test: Make integration test names consistent.

This commit is contained in:
Ruben Verborgh
2020-12-22 00:32:38 +01:00
parent 8dcb498201
commit 9dcb4fb603
12 changed files with 13 additions and 13 deletions

View File

@@ -17,7 +17,7 @@ export const instantiateFromConfig = async(componentUrl: string, configFile: str
await loader.registerAvailableModuleResources();
// Instantiate the component from the config
const configPath = Path.join(__dirname, configFile);
const configPath = Path.join(__dirname, 'config', configFile);
return loader.instantiateFromUrl(componentUrl, configPath, undefined, { variables });
};