MCPcopy
hub / github.com/codeceptjs/CodeceptJS / support

Method support

lib/container.js:176–184  ·  view source on GitHub ↗

* Get all support objects or get support object by name * * @api * @param {string} [name] * @returns { * }

(name)

Source from the content-addressed store, hash-verified

174 * @returns { * }
175 */
176 static support(name) {
177 if (!name) {
178 return container.proxySupport
179 }
180 if (typeof container.support[name] === 'function') {
181 return container.support[name]
182 }
183 return container.proxySupport[name]
184 }
185
186 /**
187 * Get raw (non-proxied) support objects for direct access.

Callers 13

initCodeceptGlobalsFunction · 0.80
injectFunction · 0.80
parseInputFunction · 0.80
completerFunction · 0.80
getCodeSuggestionsMethod · 0.80
healStepMethod · 0.80
getInjectedArgumentsFunction · 0.80
loginFunctionFunction · 0.80
list.jsFile · 0.80
check.jsFile · 0.80
container_test.jsFile · 0.80
expose_test.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected