fix: update tests for data structures challenges (#18842)
This commit is contained in:
committed by
mrugesh mohapatra
parent
9e20cfa0ec
commit
73485119f4
@ -26,7 +26,7 @@ In this exercise we will pass an array and a value to the checkSet() function. Y
|
||||
```yml
|
||||
tests:
|
||||
- text: <code>checkSet([4, 5, 6], 3)</code> should return [ false, 3 ]
|
||||
testString: assert(function(){var test = checkSet([4,5,6], 3); test === [ false, 3 ]}, '<code>checkSet([4, 5, 6], 3)</code> should return [ false, 3 ]');
|
||||
testString: 'assert((function(){var test = checkSet([4,5,6], 3); test === [ false, 3 ]})(), "<code>checkSet([4, 5, 6], 3)</code> should return [ false, 3 ]");'
|
||||
|
||||
```
|
||||
|
||||
|
@ -24,7 +24,7 @@ Now you've successfully learned how to use the ES6 <code>Set()</code> object, go
|
||||
```yml
|
||||
tests:
|
||||
- text: Your Set was returned correctly!
|
||||
testString: assert(function(){var test = checkSet(new Set([1,2,3,4,5,6,7])); test === [ 1, 2, 3, 4, 5, 6, 7 ]}, 'Your Set was returned correctly!');
|
||||
testString: 'assert((function(){var test = checkSet(new Set([1,2,3,4,5,6,7])); test === [ 1, 2, 3, 4, 5, 6, 7 ]})(), "Your Set was returned correctly!");'
|
||||
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user