@web/test-runner-chrome
Advanced tools
Comparing version 0.14.1 to 0.14.2
@@ -51,3 +51,3 @@ "use strict"; | ||
window[name] = (...args) => { | ||
fn.call(window, ...args); | ||
const result = fn.call(window, ...args); | ||
const id = Math.random().toString().substring(2); | ||
@@ -59,2 +59,3 @@ // Make sure that the tab running the test code is brought back to the front. | ||
}); | ||
return result; | ||
}; | ||
@@ -61,0 +62,0 @@ } |
{ | ||
"name": "@web/test-runner-chrome", | ||
"version": "0.14.1", | ||
"version": "0.14.2", | ||
"publishConfig": { | ||
@@ -48,3 +48,3 @@ "access": "public" | ||
"dependencies": { | ||
"@web/test-runner-core": "^0.11.2", | ||
"@web/test-runner-core": "^0.11.5", | ||
"@web/test-runner-coverage-v8": "^0.7.0", | ||
@@ -51,0 +51,0 @@ "async-mutex": "0.4.0", |
@@ -72,3 +72,3 @@ import { Page, JSCoverageEntry } from 'puppeteer-core'; | ||
(window as any)[name] = (...args: unknown[]) => { | ||
fn.call(window, ...args); | ||
const result = fn.call(window, ...args); | ||
const id = Math.random().toString().substring(2); | ||
@@ -80,2 +80,3 @@ // Make sure that the tab running the test code is brought back to the front. | ||
}); | ||
return result; | ||
}; | ||
@@ -82,0 +83,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49507
791