Browse Source

adding comments to the tests

content-update
MSilva95 4 years ago committed by Clément
parent
commit
f92c3356c3
  1. 5
      js/tests/using-filter_test.js

5
js/tests/using-filter_test.js

@ -7,6 +7,7 @@ const check = ({ filterCalls }, eq, a, b) => {
filterCalls.length = 0 filterCalls.length = 0
return len ? result : false return len ? result : false
} }
//check that the code did use filter properly //check that the code did use filter properly
t(({ eq, ctx }) => t(({ eq, ctx }) =>
check(ctx, eq, filterShortStateName(ctx.arr1), [ check(ctx, eq, filterShortStateName(ctx.arr1), [
@ -23,6 +24,7 @@ t(({ eq, ctx }) =>
'Utah', 'Utah',
]), ]),
) )
//check that the code did use filter properly //check that the code did use filter properly
t(({ eq, ctx }) => t(({ eq, ctx }) =>
check(ctx, eq, filterStartVowel(ctx.arr1), [ check(ctx, eq, filterStartVowel(ctx.arr1), [
@ -40,6 +42,7 @@ t(({ eq, ctx }) =>
'Utah', 'Utah',
]), ]),
) )
//check that the code did use filter properly //check that the code did use filter properly
t(({ eq, ctx }) => t(({ eq, ctx }) =>
check(ctx, eq, filter5Vowels(ctx.arr1), [ check(ctx, eq, filter5Vowels(ctx.arr1), [
@ -51,6 +54,7 @@ t(({ eq, ctx }) =>
'West Virginia', 'West Virginia',
]), ]),
) )
//check that the code did use filter properly //check that the code did use filter properly
t(({ eq, ctx }) => t(({ eq, ctx }) =>
check(ctx, eq, filter1DistinctVowel(ctx.arr1), [ check(ctx, eq, filter1DistinctVowel(ctx.arr1), [
@ -64,6 +68,7 @@ t(({ eq, ctx }) =>
'Tennessee', 'Tennessee',
]), ]),
) )
//check that the code did use filter properly //check that the code did use filter properly
t(({ eq, ctx }) => t(({ eq, ctx }) =>
check(ctx, eq, multiFilter(ctx.arr2), [ check(ctx, eq, multiFilter(ctx.arr2), [

Loading…
Cancel
Save