Add integration test for localeOverride

This commit is contained in:
Jamie Kyle
2024-09-09 15:33:12 -07:00
committed by GitHub
parent dec06209e7
commit ff5b21d2f3
2 changed files with 79 additions and 0 deletions
+9
View File
@@ -260,6 +260,15 @@ export class Bootstrap {
return path.join(this.storagePath, 'logs');
}
public get ephemeralConfigPath(): string {
assert(
this.storagePath !== undefined,
'Bootstrap has to be initialized first, see: bootstrap.init()'
);
return path.join(this.storagePath, 'ephemeral.json');
}
public getBackupPath(fileName: string): string {
assert(
this.backupPath !== undefined,