This commit is contained in:
Tiệp Sunflower
2023-03-06 14:23:39 +07:00
commit aa9c76c82f
2234 changed files with 449471 additions and 0 deletions

27
node_modules/@testim/chrome-version/readme.MD generated vendored Normal file
View File

@@ -0,0 +1,27 @@
# chrome-version
[![Build Status](https://github.com/testimio/chrome-version/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/testimio/chrome-version/actions/workflows/ci.yml)
Finds the version of Chrome (or Chromium) that is installed on your machine.
## Installation
```sh
npm install @testim/chrome-version
```
## Use
```js
(async () => {
const { getChromeVersion } = require('@testim/chrome-version');
const includeChromium = false; // NOTE: set to true to also search for Chromium
const version = await getChromeVersion(includeChromium);
console.log(version);
})();
```
## Testing
```sh
npm test
```
* If no version of chrome is installed on your machine `getChromeVersion` will return null.