@appium/test-support 3.0.29 → 3.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -17
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- @appium/test-support
2
- ===================
1
+ # @appium/test-support
3
2
 
4
- A collection of test utility lib used across Appium packages.
3
+ > A collection of test utility libs used across Appium packages
5
4
 
6
- [![Build Status](https://travis-ci.org/appium/@appium/test-support.svg?branch=master)](https://travis-ci.org/appium/@appium/test-support)
5
+ [![NPM version](http://img.shields.io/npm/v/@appium/test-support.svg)](https://npmjs.org/package/@appium/test-support)
6
+ [![Downloads](http://img.shields.io/npm/dm/@appium/test-support.svg)](https://npmjs.org/package/@appium/test-support)
7
7
 
8
- ## Install
8
+ ## Installation
9
9
 
10
10
  ```
11
11
  npm install @appium/test-support --save-dev
12
12
  ```
13
13
 
14
- ## Api
14
+ ## Usage
15
15
 
16
16
  ### stubEnv
17
17
 
@@ -59,7 +59,7 @@ describe('myTest', () => {
59
59
 
60
60
  ### withSandbox
61
61
 
62
- Use when mixing up sinon apis (mocks, spies stubs).
62
+ Use when mixing up `sinon` APIs (mocks, spies, stubs).
63
63
 
64
64
  ```js
65
65
  import { withSandbox } from '@appium/test-support';
@@ -145,14 +145,6 @@ can be scripted. Toward that, there are two scripts:
145
145
  * `android-emu-travis-post` - waits for the device to be booted, and then goes
146
146
  to its home screen
147
147
 
148
- ## Watch
148
+ ## License
149
149
 
150
- ```
151
- npm run watch
152
- ```
153
-
154
- ## Test
155
-
156
- ```
157
- npm test
158
- ```
150
+ Apache-2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appium/test-support",
3
- "version": "3.0.29",
3
+ "version": "3.0.30",
4
4
  "description": "A collection of test utilities used across Appium packages",
5
5
  "keywords": [
6
6
  "automation",
@@ -45,7 +45,7 @@
45
45
  "test:unit": "mocha \"./test/unit/**/*.spec.js\""
46
46
  },
47
47
  "dependencies": {
48
- "@appium/support": "^4.1.11",
48
+ "@appium/support": "^4.2.0",
49
49
  "@colors/colors": "1.6.0",
50
50
  "bluebird": "3.7.2",
51
51
  "lodash": "4.17.21",
@@ -60,5 +60,5 @@
60
60
  "publishConfig": {
61
61
  "access": "public"
62
62
  },
63
- "gitHead": "5c1d20517cfc8773cd5ffb0f8bb996668d71116b"
63
+ "gitHead": "76df4d600dcb7c867c37c3d7d302dc7fcc95ae09"
64
64
  }