const{ request }= require("express");const superTest = require("supertest");const courses = require("../router/courses");const app = require("../app");
describe("Post /courses",()=>{
describe("given a right inputs", async ()=>{
test("should res to be 200 status code",()=>{const res = request(app).post("/courses").send({
name:"first course",
description:"description should be more than 25. description should be more than 25. description should be more than 25. description should be more than 25. ",
price:100,});
expect(res.statusCode).toBe(200);});});});
هذه اول مرة اقوم بها ب integration test والفيديو الذى علمنى كان يشرح على اساس جافا سكريبت وليس node js ولا اعلم لماذا هذا ال test لا يعمل حيث يعطينى خطأ
السؤال
Ahmed Sawy
هذا هو الرواتر ..
هذا app.js
واخيرا هذا هو ملف ال courses.test.js
هذه اول مرة اقوم بها ب integration test والفيديو الذى علمنى كان يشرح على اساس جافا سكريبت وليس node js ولا اعلم لماذا هذا ال test لا يعمل حيث يعطينى خطأ
TypeError: Cannot read property 'JSON' of null
5 أجوبة على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.