refactor: Move config templates to templates folder

This commit is contained in:
Joachim Van Herwegen
2021-05-18 10:08:58 +02:00
parent 9666f6dd6a
commit fadbaefce2
6 changed files with 7 additions and 6 deletions

View File

@@ -13,10 +13,10 @@ const rootFilePath = getTestFolder('dynamicPods');
const podConfigJson = joinFilePath(rootFilePath, 'config-pod.json');
const configs: [string, any][] = [
[ 'storage-memory.json', {
[ 'memory.json', {
teardown: (): void => removeFolder(rootFilePath),
}],
[ 'storage-filesystem.json', {
[ 'filesystem.json', {
teardown: (): void => removeFolder(rootFilePath),
}],
];