Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@web/test-runner-chrome

Package Overview
Dependencies
Maintainers
6
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@web/test-runner-chrome - npm Package Compare versions

Comparing version 0.5.21 to 0.6.0

33

CHANGELOG.md
# @web/test-runner-chrome
## 0.6.0
### Minor Changes
- cdddf68: Removed support for `@web/test-runner-helpers`. This is a breaking change, the functionality is now available in `@web/test-runner-commands`.
- fdcf2e5: Merged test runner server into core, and made it no longer possible configure a different server.
The test runner relies on the server for many things, merging it into core makes the code more maintainable. The server is composable, you can proxy requests to other servers and we can look into adding more composition APIs later.
- 9be1f95: Added native node es module entrypoints. This is a breaking change. Before, native node es module imports would import a CJS module as a default import and require destructuring afterwards:
```js
import playwrightModule from '@web/test-runner-playwright';
const { playwrightLauncher } = playwrightModule;
```
Now, the exports are only available directly as a named export:
```js
import { playwrightLauncher } from '@web/test-runner-playwright';
```
### Patch Changes
- Updated dependencies [cdddf68]
- Updated dependencies [fdcf2e5]
- Updated dependencies [62ff8b2]
- Updated dependencies [9be1f95]
- @web/test-runner-core@0.7.0
- @web/browser-logs@0.1.0
- @web/test-runner-coverage-v8@0.1.0
## 0.5.21

@@ -4,0 +37,0 @@

22

package.json
{
"name": "@web/test-runner-chrome",
"version": "0.5.21",
"version": "0.6.0",
"publishConfig": {

@@ -22,5 +22,4 @@ "access": "public"

"build": "tsc",
"test": "mocha test/**/*.test.ts --require ts-node/register --reporter progress",
"test:ci": "yarn test",
"test:watch": "mocha test/**/*.test.ts --require ts-node/register --watch --watch-files src,test --reporter progress"
"test": "mocha test/**/*.test.ts --require ts-node/register --reporter dot",
"test:watch": "mocha test/**/*.test.ts --require ts-node/register --watch --watch-files src,test --reporter dot"
},

@@ -39,4 +38,5 @@ "files": ["dist"],

"@types/puppeteer-core": "^2.0.0",
"@web/browser-logs": "^0.0.1",
"@web/test-runner-coverage-v8": "^0.0.4",
"@web/browser-logs": "^0.1.0",
"@web/test-runner-core": "^0.7.0",
"@web/test-runner-coverage-v8": "^0.1.0",
"chrome-launcher": "^0.13.3",

@@ -46,6 +46,10 @@ "puppeteer-core": "^5.0.0"

"devDependencies": {
"@web/test-runner-mocha": "^0.2.15",
"@web/test-runner-server": "^0.5.15",
"portfinder": "^1.0.26"
"@web/test-runner-mocha": "^0.3.0"
},
"exports": {
".": {
"import": "./index.mjs",
"require": "./dist/index.js"
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc