Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. it("returns 201", async () => {
  2. const product = { name: "tshirt", price: 20, weight: 0.1 };
  3. const { statusCode } = await queryApi("POST", "/products", {body: data});
  4. expect(statusCode).to.equal(201);
  5. });
Add Comment
Please, Sign In to add comment