This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import chai, { expect } from 'chai'; | |
import { describe, it } from 'mocha'; | |
import chaiHttp from 'chai-http'; | |
chai.use(chaiHttp); | |
chai.should(); | |
const newArticle = { | |
title: 'Design patterns', | |
body: 'There are several design patterns e.g: MVC pattern', |