You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -377,17 +377,21 @@ browserify:
377
377
node: true
378
378
```
379
379
380
-
#### IE < 11 support
380
+
#### IE support
381
381
382
-
To support IE < 11, an older version of the [`buffer`](https://github.com/feross/buffer) polyfill is required. Use the following configuration and run `npm install buffer@4`:
382
+
To support Internet Explorer, older versions of the [`buffer`](https://github.com/feross/buffer) and [`stream-browserify`](https://github.com/browserify/stream-browserify) polyfills are required. Use the following configuration and run `npm install buffer@4 stream-browserify@2`:
383
383
384
384
```yaml
385
-
# Use buffer@4 to support IE < 11
385
+
# Use buffer@4 and stream-browserify@2 to support IE
386
386
browserify:
387
387
- require: 'buffer/'
388
388
expose: 'buffer'
389
+
- require: 'stream-browserify'
390
+
expose: 'stream'
389
391
```
390
392
393
+
This is not officially supported. There may be other reasons that IE will not work.
394
+
391
395
### `server` (string or object)
392
396
393
397
This field can point to an optional shell command or JavaScript file to run as a support server. It will be started before all tests and stopped afterwards. This allows testing websockets and other network requests. Your command will be run with the `AIRTAP_SUPPORT_PORT` environment variable set to a port number you must use. If your server does not listen on this port it will be unreachable (on browser providers that use a tunnel).
0 commit comments