MCPcopy
hub / github.com/emberjs/ember.js / run

Method run

bin/run-tests-browser-runner.js:17–24  ·  view source on GitHub ↗
(url, attempts)

Source from the content-addressed store, hash-verified

15 }
16
17 async run(url, attempts) {
18 let result = await this.getResultWithRetry(url, attempts);
19 let failed = !result || !result.total || result.failed;
20 if (failed) {
21 throw result;
22 }
23 return result;
24 }
25
26 async getResultWithRetry(url, attempts) {
27 while (attempts > 0) {

Callers 12

runFunction · 0.80
test.tsFile · 0.80
testRunFunction · 0.80
destroyAppFunction · 0.80
setup-app.jsFile · 0.80
createApplicationFunction · 0.80
visitFunction · 0.80
renderToHTMLFunction · 0.80
setup-component.jsFile · 0.80
setupComponentTestFunction · 0.80
renderFunction · 0.80
runInBrowserFunction · 0.80

Calls 1

getResultWithRetryMethod · 0.95

Tested by

no test coverage detected