fix(host): review round 22 — note enumeration includes the create path; cross-method equality pinned; NFD-volume boundary recorded

This commit is contained in:
creatixchu
2026-07-30 02:53:45 +08:00
parent 8016591ebe
commit de24461b91
10 files changed
+22 -13

No files matched your search

@@ -142,7 +142,9 @@ export class TestWorkspaces implements IWorkspaces {
* Browse child creation (recorded). The default joins parent and name.
* @param path - absolute existing parent directory.
* @param name - single path segment.
* @returns the created directory's absolute path.
* @returns the created directory's absolute path, in the shape
* `DirectoryPickerBrowseCapability.createDirectory` contracts (verbatim
* equal to the child's `entries[].path` in the parent's next listing).
*/
async createDirectory(path: string, name: string): Promise<string> {
this.calls.push({ method: 'createDirectory', args: [path, name] })