mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	[Test] Fix bug
This commit is contained in:
		
							parent
							
								
									feecb49a9f
								
							
						
					
					
						commit
						ad497d0e7e
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		| 
						 | 
					@ -155,9 +155,9 @@ describe('API', () => {
 | 
				
			||||||
			res.body.should.be.a('object');
 | 
								res.body.should.be.a('object');
 | 
				
			||||||
			res.body.should.have.property('name').eql(myName);
 | 
								res.body.should.have.property('name').eql(myName);
 | 
				
			||||||
			res.body.should.have.property('profile').a('object');
 | 
								res.body.should.have.property('profile').a('object');
 | 
				
			||||||
			res.body.should.have.deep.property('profile.location').eql(myLocation);
 | 
								res.body.should.have.nested.property('profile.location').eql(myLocation);
 | 
				
			||||||
			res.body.should.have.deep.property('profile.birthday').eql(myBirthday);
 | 
								res.body.should.have.nested.property('profile.birthday').eql(myBirthday);
 | 
				
			||||||
			res.body.should.have.deep.property('profile.gender').eql('female');
 | 
								res.body.should.have.nested.property('profile.gender').eql('female');
 | 
				
			||||||
		}));
 | 
							}));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		it('名前を空白にできない', async(async () => {
 | 
							it('名前を空白にできない', async(async () => {
 | 
				
			||||||
| 
						 | 
					@ -178,7 +178,7 @@ describe('API', () => {
 | 
				
			||||||
			res.should.have.status(200);
 | 
								res.should.have.status(200);
 | 
				
			||||||
			res.body.should.be.a('object');
 | 
								res.body.should.be.a('object');
 | 
				
			||||||
			res.body.should.have.property('profile').a('object');
 | 
								res.body.should.have.property('profile').a('object');
 | 
				
			||||||
			res.body.should.have.deep.property('profile.birthday').eql(null);
 | 
								res.body.should.have.nested.property('profile.birthday').eql(null);
 | 
				
			||||||
		}));
 | 
							}));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		it('不正な誕生日の形式で怒られる', async(async () => {
 | 
							it('不正な誕生日の形式で怒られる', async(async () => {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue