We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a42c05 commit f5f5ac6Copy full SHA for f5f5ac6
1 file changed
test/commands/deploy/metadata.nut.ts
@@ -65,9 +65,10 @@ describe('deploy metadata NUTs', () => {
65
await testkit.expect.filesToBeDeployed(['force-app/main/default/classes/*']);
66
67
// no illegal file paths should be generated when using SF_MDAPI_TEMP_DIR
68
+ // Users/william.ruemmele/projects/oss/plugin-deploy-retrieve/test_session_1761066173823d94ce455705e3fe5/dreamhouse-lwc/myTempDirectory/2025-10-21T17_03_52.245Z_deploy/metadata/package.xml
69
expect(
- (await getAllFilePaths(join(testkit.projectDir, process.env.SF_MDAPI_TEMP_DIR))).every(
70
- (path) => !/[<>:"/\\|?*]/.test(path)
+ (await getAllFilePaths(join(testkit.projectDir, process.env.SF_MDAPI_TEMP_DIR))).every((path) =>
71
+ /[<>:"/\\|?*]/.test(path)
72
)
73
).to.be.true;
74
0 commit comments