@bigbinary/neeto-playwright-commons 1.6.0 → 1.6.1

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.
package/index.cjs.js CHANGED
@@ -241,6 +241,7 @@ class CustomCommands {
241
241
  };
242
242
  const httpMethodsHandlers = {
243
243
  get: () => this.request.get(url, requestOptions),
244
+ patch: () => this.request.patch(url, requestOptions),
244
245
  post: () => this.request.post(url, requestOptions),
245
246
  put: () => this.request.put(url, requestOptions),
246
247
  delete: () => this.request.delete(url, requestOptions),