| 
									
										
										
										
											2019-06-01 00:56:07 +09:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2019-06-01 00:56:07 +09:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | import {promisify} from 'util'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('node timer', () => { | 
					
						
							|  |  |  |   it('util.promisify should work with setTimeout', (done: DoneFn) => { | 
					
						
							|  |  |  |     const setTimeoutPromise = promisify(setTimeout); | 
					
						
							|  |  |  |     setTimeoutPromise(50, 'value') | 
					
						
							|  |  |  |         .then( | 
					
						
							|  |  |  |             value => { | 
					
						
							|  |  |  |               expect(value).toEqual('value'); | 
					
						
							|  |  |  |               done(); | 
					
						
							|  |  |  |             }, | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |             error => { | 
					
						
							|  |  |  |               fail(`should not be here with error: ${error}.`); | 
					
						
							|  |  |  |             }); | 
					
						
							| 
									
										
										
										
											2019-06-01 00:56:07 +09:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('util.promisify should work with setImmediate', (done: DoneFn) => { | 
					
						
							|  |  |  |     const setImmediatePromise = promisify(setImmediate); | 
					
						
							|  |  |  |     setImmediatePromise('value').then( | 
					
						
							|  |  |  |         value => { | 
					
						
							|  |  |  |           expect(value).toEqual('value'); | 
					
						
							|  |  |  |           done(); | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2020-04-13 16:40:21 -07:00
										 |  |  |         error => { | 
					
						
							|  |  |  |           fail(`should not be here with error: ${error}.`); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2019-06-01 00:56:07 +09:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  | }); |