We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66b3c59 commit c9247edCopy full SHA for c9247ed
1 file changed
__test__/backup.test.ts
@@ -1043,6 +1043,8 @@ describe("Backup", function () {
1043
fs.writeFileSync(file1, "template1");
1044
fs.writeFileSync(file2, "template2");
1045
1046
+ backup.fsWorkaroundLinux = true;
1047
+
1048
expect(await backup.backupFolder(testPath.templates, dst)).toBe(true);
1049
expect(fs.existsSync(checkFile1)).toBe(true);
1050
expect(fs.existsSync(checkFile2)).toBe(true);
@@ -1105,6 +1107,7 @@ describe("Backup", function () {
1105
1107
1106
1108
backup.activeBackupPath = testPath.activeBackupJob;
1109
backup.backupPlugins = true;
1110
1111
await backup.backupProfileData();
1112
1113
expect(fs.existsSync(backupTemplate)).toBe(true);
0 commit comments