# Airtap
**Repository Path**: mirrors/Airtap
## Basic Information
- **Project Name**: Airtap
- **Description**: Airtap 是一种在浏览器中测试 JavaScript 的简单方法,能够在数秒内开始在本地测试你的代码,并无缝转移到由 Sauce Labs 提供的基于云的浏览器上,以获得更好的
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: dependabot/npm_and_yarn/uuid-11.1.0
- **Homepage**: https://www.oschina.net/p/airtap
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2018-02-26
- **Last Updated**: 2023-09-12
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# airtap
**Run TAP unit tests in 1789+ browsers.** Airtap is a command-line interface to unit test your JavaScript in browsers, using a TAP-producing harness like `tape`. Start testing locally and seamlessly move to browsers in the cloud for full coverage. Airtap runs browsers concurrently and lets you iterate quickly during development. Don't just claim your JavaScript supports "all browsers", prove it with tests!
[](https://www.npmjs.com/package/airtap)
[](https://www.npmjs.com/package/airtap)
[](https://github.com/airtap/airtap/actions/workflows/test.yml)
[](https://standardjs.com)
[](https://common-changelog.org)
## Install
With [npm](https://npmjs.org) do:
```
npm install airtap --save-dev
```
If you are upgrading or migrating from [`zuul`](https://github.com/defunctzombie/zuul): please see the [upgrade guide](./UPGRADING.md).
## Getting Started
You'll need an entry point for your tests like `test.js`. For a complete example see [`airtap-demo`](https://github.com/airtap/demo). If you already have an entry point, go ahead and run it with:
```
airtap test.js
```
Out of the box, this will launch the default browser on your system. To keep the browser open and automatically reload when you make changes to your test files, run:
```
airtap --live test.js
```
### Adding Browsers
In order to run more browsers, create a `.airtap.yml` file in your working directory, containing at least one provider and browser. For example:
```yaml
providers:
- airtap-system
browsers:
- name: chrome
- name: ff
```
Providers discover browsers on a particular platform or remote service. In the above example, [`airtap-system`][airtap-system] finds browsers installed on your machine which Airtap then matches against the specified `browsers`. Providers are npm packages that must be installed separately from the main `airtap` package. So that would be:
```
npm install airtap airtap-system --save-dev
```
You can include multiple providers and let Airtap find the best matching browser(s):
```yaml
providers:
- airtap-playwright
- airtap-system
browsers:
- name: ff
version: 78
```
You can also match browsers by provider:
Click to expand
```yaml
browsers:
- name: ff
provider: airtap-system
```
Airtap, providers and browsers are tied together by [manifests](https://github.com/airtap/browser-manifest). They define the name and other metadata of browsers. You can see these manifests by running `airtap -l` or `-la` which is short for `--list-browsers --all`. For example:
Click to expand
```
$ airtap -la
- name: electron
title: Electron 9.0.5
version: 9.0.5
options:
headless: true
provider: airtap-electron
```
Airtap can match browsers on any manifest property, with the exception of `options` which exists to customize the browser behavior. Options are specific to a provider. For example, the `airtap-playwright` provider supports disabling headless mode and setting custom command-line arguments:
```yaml
browsers:
- name: chromium
options:
headless: false
launch:
args: [--lang=en-US]
```
For more information on the `browsers` field, see [Configuration](#configuration).
## Available Providers
| **Package** | **Description** |
| :--------------------------------------- | :------------------------------------------------- |
| [`airtap-system`][airtap-system] | Locally installed browsers on Linux, Mac & Windows |
| [`airtap-playwright`][airtap-playwright] | Playwright (headless Chromium, FF and WebKit) |
| [`airtap-sauce`][airtap-sauce] | Remote browsers in Sauce Labs |
| [`airtap-electron`][airtap-electron] | Electron |
| [`airtap-default`][airtap-default] | Default browser |
| [`airtap-manual`][airtap-manual] | Manually open a URL in a browser of choice |
## Cloud Testing With Sauce Labs
The [`airtap-sauce`][airtap-sauce] provider runs browsers on [Sauce Labs](https://saucelabs.com/). Sauce Labs offers quite a few browsers, with a wide range of versions and platforms.
_Open source projects can use the [free for open source](https://saucelabs.com/opensauce) version of Sauce Labs._
### 1. Set Credentials
Airtap needs to know your Sauce Labs credentials. You don't want to commit these sensitive credentials to your git repository. Instead set them via the environment as `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY`.
### 2. Select Browsers
Add the `airtap-sauce` provider and wanted browsers to `.airtap.yml`:
```yaml
providers:
- airtap-sauce
browsers:
- name: chrome
- name: ios_saf
- name: ie
```
### 3. Set Hostname
Airtap runs a server to serve JavaScript test files to browsers. The `airtap-sauce` provider establishes a tunnel to your local machine so that Sauce Labs can find that server. For this to work, some browsers need a custom loopback hostname, because they don't route `localhost` through the tunnel. Add the following to your [`hosts`](https://en.wikipedia.org/wiki/Hosts_%28file%29) file:
```
127.0.0.1 airtap.local
```
You are now ready to run your tests in the cloud with `airtap test.js`.
## Continuous Integration
After making sure your tests pass when initiated from your local machine, you can setup continuous integration to run your tests whenever changes are committed. Any CI service that supports Node.js will work.
[](https://saucelabs.com/u/level-js)
### Travis CI
#### 1. Setup Travis
Take a look at the Travis [getting started](http://about.travis-ci.org/docs/user/languages/javascript-with-nodejs/) guide for Node.js. At minimum we need to create a `.travis.yml` file containing:
```yaml
language: node_js
node_js:
- 12
addons:
hosts:
- airtap.local
```
#### 2. Add Test Script
Add the following to your `package.json`:
```json
{
"scripts": {
"test": "airtap test.js"
}
}
```
#### 3. Enable Code Coverage
Optionally enable code coverage with the `--coverage` flag. This will collect code coverage per browser into the `.nyc-output/` folder in [Istanbul](https://istanbul.js.org/) 1.0 format. Afterwards you can generate reports with [`nyc report`](https://github.com/istanbuljs/nyc), which takes care of merging code coverage from multiple browsers.
A typical setup for Travis looks like:
```json
{
"scripts": {
"test": "airtap --coverage test.js"
}
}
```
You can choose to post the results to [`coveralls`](https://coveralls.io/) (or similar) by adding a step to `.travis.yml`:
```yaml
after_success: npm run coverage
```
```json
{
"scripts": {
"test": "airtap --coverage test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}
```
#### 4. Set Credentials
Skip this step if you're not using the [`airtap-sauce`][airtap-sauce] provider. Same as when initiating tests locally, we need to get Sauce Labs credentials to Travis. Luckily Travis has a feature called [secure environment variables](http://about.travis-ci.org/docs/user/build-configuration/#Secure-environment-variables). You'll need to set 2 of those: `SAUCE_USERNAME` and `SAUCE_ACCESS_KEY`.
### GitHub Actions
Should work in theory :)
## CLI
Usage: `airtap [options] `. Supports multiple `files`. They can be paths relative to the working directory or glob patterns (e.g. `airtap test/*.js`). Options:
```
-v --version Print version and exit
-l --list-browsers List (effective or --all) browsers
-a --all Test or list all available browsers
--coverage Enable code coverage analysis
--live Keep browsers open to allow repeated test runs
-c --concurrency Number of browsers to test concurrently, default 5
-r --retries Number of retries when running a browser, default 6
-t --timeout How long to wait for test results, default 5m. Can
be a number in milliseconds or a string with unit.
-p --preset Select a configuration preset
-s --server