Created
March 13, 2019 11:12
-
-
Save Inclet/48f9f18726965403c6b0cd01335bb524 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 from "chai"; | |
| import chaiHttp from "chai-http"; | |
| import app from "../index"; //entry point. | |
| chai.should(); | |
| chai.use(chaiHttp); | |
| let token; | |
| describe('Signing up a user' , ()=>{ | |
| const user = { | |
| firstName: "Yvan", | |
| middleName: "", | |
| lastName: "Cyuzuzo", | |
| email: "[email protected]", | |
| username: "Yvano", | |
| password: "Google23!" | |
| } | |
| it("/api/v1/auth/signup --Signing up an new user", (done){ | |
| chai.request(app) | |
| .post('/api/v1/auth/signup') | |
| .send(user) | |
| .end((res)=>{ | |
| token = res.body.data[0].token; | |
| res.body.should.be.a('object'); | |
| res.body.should.have.property('status').eql(201); | |
| res.body.data[0].should.have.property('token'); | |
| res.body.data[0].should.have.property('username').eql('Yvano'); | |
| res.body.data[0].should.have.property('email').eql('[email protected]'); | |
| res.body.data[0].should.have.propert('firstName').eql('Clet'); | |
| res.body.data[0].should.have.property('otherName').eql(''); | |
| res.should.data[0].should.have.property('lastName').eql('Cyuzuzo'); | |
| done(); | |
| }) | |
| }) | |
| }) |
-Eslint boy.
- be consistent (if you prefer adding semicolons at the end of statement do it for all statements)
- Consider using Eslint
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Congs for the code but: