Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1674,14 +1674,14 @@
"default": true
},
"objectscript.unitTest.relativeTestRoots": {
"description": "Paths to where client-side test classes are stored. Relative to the workspace folder root.",
"description": "Paths to where client-side test classes are stored. Relative to the workspace folder root. Use '*' as a wildcard within a segment to match multiple folders.",
"type": "array",
"default": [],
"scope": "resource",
"items": {
"type": "string",
"pattern": "^([\\p{L}\\d_. -]+([\\/\\\\][\\p{L}\\d_. -]+)*)?$",
"patternErrorMessage": "Each folder name can only contain letters, digits, space, hyphen ('-'), period ('.'), or underscore ('_'), and the full path must neither begin nor end with a slash."
"pattern": "^([-\\p{L}\\d_. *]+([\\/\\\\][-\\p{L}\\d_. *]+)*)?$",
"patternErrorMessage": "Each folder name can only contain letters, digits, space, hyphen ('-'), period ('.'), underscore ('_'), or an asterisk ('*') wildcard, and the full path must neither begin nor end with a slash."
}
},
"objectscript.unitTest.autoload.folder": {
Expand Down Expand Up @@ -1710,6 +1710,13 @@
"default": true,
"scope": "resource"
},
"objectscript.unitTest.legacyRequestTimeout": {
"description": "Timeout in milliseconds applied to legacy unit test API calls. Set to 0 for no timeout.",
"type": "integer",
"default": 6000000,
"minimum": 0,
"scope": "resource"
},
"objectscript.commentToken": {
"description": "The line comment characters for ObjectScript in classes and MAC and INC routines.",
"type": "string",
Expand Down
1 change: 1 addition & 0 deletions src/ccs/sourcecontrol/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const ROUTES = {
getGlobalDocumentation: () => `/getGlobalDocumentation`,
resolveDefinition: (namespace: string) => `/namespaces/${encodeURIComponent(namespace)}/resolveDefinition`,
createItem: (namespace: string) => `/namespaces/${encodeURIComponent(namespace)}/createItem`,
runUnitTests: (namespace: string) => `/namespaces/${encodeURIComponent(namespace)}/unitTests/runUnitTests`,
} as const;

export type RouteKey = keyof typeof ROUTES;
Loading