8000 solved test #4 · ImJasc/javascript-exercises@584622f · GitHub
[go: up one dir, main page]

Skip to content

Commit 584622f

Browse files
committed
solved test TheOdinProject#4
1 parent 7bb0f44 commit 584622f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

04_removeFromArray/removeFromArray.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe('removeFromArray', () => {
1010
test('removes multiple of the same value', () => {
1111
expect(removeFromArray([1, 2, 2, 3], 2)).toEqual([1, 3]);
1212
});
13-
test.skip('ignores non present values', () => {
13+
test('ignores non present values', () => {
1414
expect(removeFromArray([1, 2, 3, 4], 7, "tacos")).toEqual([1, 2, 3, 4]);
1515
});
1616
test.skip('ignores non present values, but still works', () => {

0 commit comments

Comments
 (0)
0