fix(plugins): rename & match removeFileF logic with other platforms (#1806)

This commit is contained in:
エリス
2025-06-16 21:29:02 +09:00
committed by GitHub
parent 7a47fe01dc
commit 5dc9c72821
3 changed files with 36 additions and 36 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ describe('common platform handler', function () {
const s = spyOn(fs, 'rmSync').and.callThrough();
deleteJava(project_dir, java_file);
expect(s).toHaveBeenCalled();
expect(s).toHaveBeenCalledWith(path.resolve(project_dir, java_file));
expect(s).toHaveBeenCalledWith(path.resolve(project_dir, java_file), { recursive: true, force: true });
});
it('Test#010 : should delete empty directories after removing source code in a java src path hierarchy', function () {