Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@trayio/commons

Package Overview
Dependencies
Maintainers
0
Versions
178
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trayio/commons - npm Package Compare versions

Comparing version 4.63.0 to 4.64.0

12

dist/http/HttpClient.abstract.test.js

@@ -268,2 +268,14 @@ "use strict";

});
test('should send a GET request with an empty header', async () => {
const response = await httpClient.execute(Http_1.HttpMethod.Get, baseUrl, Http_1.HttpRequest.create({
headers: { '': '' },
pathParams: {},
queryString: {},
body: BufferExtensions_1.BufferExtensions.arrayBufferToReadable(new ArrayBuffer(0)),
}))();
if (E.isLeft(response)) {
throw new Error('Got left expected right');
}
expect(response.right.statusCode).toEqual(200);
});
test('should send a GET request with a certificate', async () => {

@@ -270,0 +282,0 @@ const response = await httpClient.execute(Http_1.HttpMethod.Get, httpsServerUrl, Http_1.HttpRequest.create({

2

package.json
{
"name": "@trayio/commons",
"version": "4.63.0",
"version": "4.64.0",
"description": "Extensions to the standard/core libraries and basic features",

@@ -5,0 +5,0 @@ "exports": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc