MCPcopy Create free account
hub / github.com/axe-api/axe-api / put

Function put

packages/integrations/tests/helper.js:24–30  ·  view source on GitHub ↗
({ url, data, status })

Source from the content-addressed store, hash-verified

22};
23
24const put = async ({ url, data, status }) => {
25 return await request("localhost:3000")
26 .put(url)
27 .send(data)
28 .expect("Content-Type", /json/)
29 .expect(status);
30};
31
32const patch = async ({ url, data, status }) => {
33 try {

Callers 2

01-user.spec.jsFile · 0.90
02-post.spec.jsFile · 0.90

Calls 2

sendMethod · 0.80
putMethod · 0.80

Tested by

no test coverage detected