We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a879cac commit 51304dbCopy full SHA for 51304db
1 file changed
packages/core/src/testhost.ts
@@ -36,22 +36,7 @@ import {
36
import { defaultModelConfigurations } from "./llms"
37
import { CancellationToken } from "./cancellation"
38
import { changeext } from "./fs"
39
-
40
-// Function to create a frozen object representing Node.js path methods
41
-// This object provides utility methods for path manipulations
42
-export function createNodePath(): Path {
43
- return Object.freeze({
44
- dirname,
45
- extname,
46
- basename,
47
- join,
48
- normalize,
49
- relative,
50
- resolve,
51
- isAbsolute,
52
- changeext,
53
- })
54
-}
+import { createNodePath } from "./path"
55
56
// Class representing a test host for runtime, implementing the RuntimeHost interface
57
export class TestHost implements RuntimeHost {
0 commit comments