JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

it('it should POST a book ', (done) => {
        let book = {
            title: "The Lord of the Rings",
            author: "J.R.R. Tolkien",
            year: 1954,
            pages: 1170
        }
            chai.request(server)
            .post('/book')
            .send(book)
            .end((err, res) => {
   
              done();
            });
      });