adding testing for find ad by uuid
This commit is contained in:
		
							parent
							
								
									017800b90a
								
							
						
					
					
						commit
						d17a3b9867
					
				|  | @ -50,7 +50,7 @@ describe('FindAdByUuidUseCase', () => { | |||
|     expect(findAdByUuidUseCase).toBeDefined(); | ||||
|   }); | ||||
|   describe('execute', () => { | ||||
|     it('should return a user', async () => { | ||||
|     it('should return an ad', async () => { | ||||
|       const findAdByUuidRequest: FindAdByUuidRequest = | ||||
|         new FindAdByUuidRequest(); | ||||
|       findAdByUuidRequest.uuid = 'bb281075-1b98-4456-89d6-c643d3044a91'; | ||||
|  | @ -59,7 +59,7 @@ describe('FindAdByUuidUseCase', () => { | |||
|       ); | ||||
|       expect(user).toBe(mockAd); | ||||
|     }); | ||||
|     it('should throw an error if user does not exist', async () => { | ||||
|     it('should throw an error if ad does not exist', async () => { | ||||
|       const findAdByUuidRequest: FindAdByUuidRequest = | ||||
|         new FindAdByUuidRequest(); | ||||
|       findAdByUuidRequest.uuid = 'bb281075-1b98-4456-89d6-c643d3044a90'; | ||||
|  |  | |||
|  | @ -41,7 +41,7 @@ describe('Messager', () => { | |||
| 
 | ||||
|   it('should publish a message', async () => { | ||||
|     jest.spyOn(mockAmqpConnection, 'publish'); | ||||
|     messager.publish('user.create.info', 'my-test'); | ||||
|     messager.publish('ad.create.info', 'my-test'); | ||||
|     expect(mockAmqpConnection.publish).toHaveBeenCalledTimes(1); | ||||
|   }); | ||||
| }); | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue