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

@shopify/graphql-testing

Package Overview
Dependencies
Maintainers
13
Versions
135
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/graphql-testing - npm Package Compare versions

Comparing version 3.1.0 to 3.2.1

6

CHANGELOG.md

@@ -10,2 +10,8 @@ # Changelog

## [3.2.0] - 2019-06-27
### Added
- Allow `MockLink` to return a full GraphQLError. ([#768](https://github.com/Shopify/quilt/pull/768))
## [3.1.0] - 2019-05-22

@@ -12,0 +18,0 @@

@@ -48,2 +48,7 @@ "use strict";

}
else if (response instanceof graphql_1.GraphQLError) {
result = {
errors: [response],
};
}
else if (response instanceof Error) {

@@ -50,0 +55,0 @@ result = { errors: [new graphql_1.GraphQLError(response.message)] };

2

package.json
{
"name": "@shopify/graphql-testing",
"version": "3.1.0",
"version": "3.2.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "description": "Utilities to create mock graphql factory.",

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