webrtc-test-suite
Advanced tools
Comparing version 1.2.10 to 1.2.11
10
index.js
@@ -19,7 +19,7 @@ import checkPeerConnection from "./checks/peerConnection"; | ||
checkFeatureSupport, | ||
checkPeerConnectionSilent(){return flat(checkPeerConnection(...arguments))}, | ||
checkMediaCaptureSilent(){return flat(checkMediaCapture(...arguments))}, | ||
checkInternetSpeedSilent(){return flat(checkInternetSpeed(...arguments))}, | ||
countDeviesSilent(){return flat(countDevies(...arguments))}, | ||
getUserMediaSilent(){return flat(getUserMedia(...arguments))}, | ||
checkPeerConnectionSilent(rtcConfig = {}, verbose = false){return flat(checkPeerConnection(rtcConfig, verbose))}, | ||
checkMediaCaptureSilent(constraints, verbose = false, getStream = false){return flat(checkMediaCapture(constraints, verbose, getStream))}, | ||
checkInternetSpeedSilent(checkerFile, verbose = false){return flat(checkInternetSpeed(checkerFile, verbose))}, | ||
countDeviesSilent(verbose = false){return flat(countDevies(verbose))}, | ||
getUserMediaSilent(constraints, verbose = false){return flat(getUserMedia(constraints, verbose))}, | ||
utils: { | ||
@@ -26,0 +26,0 @@ flat, |
{ | ||
"name": "webrtc-test-suite", | ||
"version": "1.2.10", | ||
"version": "1.2.11", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "repository": "git@github.com:theanam/webrtc-test-suite.git", |
@@ -29,3 +29,3 @@ # Real life Capability testing and utilities for WebRTC. | ||
```html | ||
<script src="https://unpkg.com/webrtc-test-suite@1.2.10/dist/index.js"></script> | ||
<script src="https://unpkg.com/webrtc-test-suite@1.2.11/dist/index.js"></script> | ||
``` | ||
@@ -32,0 +32,0 @@ Yoou will get a global object called: `_rtc`. And you can access all the functionalities from that object. |
@@ -17,3 +17,3 @@ import _rtc from "../index"; | ||
function init(){ | ||
let verbose = false; | ||
let verbose = true; | ||
let pc = $(".peerconnection"); | ||
@@ -20,0 +20,0 @@ loading(pc,"Testing Peer Connection"); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
48190