@@ -167,7 +167,7 @@ describe('Validator', () => {
167167
168168 const check = async ( id ) => {
169169
170- await Hoek . wait ( ) ;
170+ await Hoek . wait ( 0 ) ;
171171
172172 if ( id === 'valid' ) {
173173 return 'verified' ;
@@ -182,7 +182,7 @@ describe('Validator', () => {
182182
183183 const append = async ( id ) => {
184184
185- await Hoek . wait ( ) ;
185+ await Hoek . wait ( 0 ) ;
186186 return id + '!' ;
187187 } ;
188188
@@ -201,7 +201,7 @@ describe('Validator', () => {
201201
202202 const check = async ( id ) => {
203203
204- await Hoek . wait ( ) ;
204+ await Hoek . wait ( 0 ) ;
205205
206206 if ( id === 'valid' ) {
207207 return 'verified' ;
@@ -220,7 +220,7 @@ describe('Validator', () => {
220220
221221 const append = async ( id ) => {
222222
223- await Hoek . wait ( ) ;
223+ await Hoek . wait ( 0 ) ;
224224 return id + '!' ;
225225 } ;
226226
@@ -247,7 +247,7 @@ describe('Validator', () => {
247247
248248 const check = async ( id ) => {
249249
250- await Hoek . wait ( ) ;
250+ await Hoek . wait ( 0 ) ;
251251 if ( id === 'valid' ) {
252252 return 'verified' ;
253253 }
@@ -257,7 +257,7 @@ describe('Validator', () => {
257257
258258 const append = async ( id ) => {
259259
260- await Hoek . wait ( ) ;
260+ await Hoek . wait ( 0 ) ;
261261 return id + '!' ;
262262 } ;
263263
@@ -272,7 +272,7 @@ describe('Validator', () => {
272272
273273 const check = async ( id ) => {
274274
275- await Hoek . wait ( ) ;
275+ await Hoek . wait ( 0 ) ;
276276
277277 if ( id === 'valid' ) {
278278 return 'verified' ;
@@ -287,7 +287,7 @@ describe('Validator', () => {
287287
288288 const append = async ( id ) => {
289289
290- await Hoek . wait ( ) ;
290+ await Hoek . wait ( 0 ) ;
291291 return id + '!' ;
292292 } ;
293293
@@ -347,7 +347,7 @@ describe('Validator', () => {
347347
348348 const append = async ( id ) => {
349349
350- await Hoek . wait ( ) ;
350+ await Hoek . wait ( 0 ) ;
351351 return id + '!' ;
352352 } ;
353353
0 commit comments