From 6ebf2e191734fde85be1a28b4de83aa0ee9ed7ed Mon Sep 17 00:00:00 2001 From: Rafael Maldonado <120501952+Rafaelmaldo@users.noreply.github.com> Date: Sun, 29 Sep 2024 20:02:13 -0400 Subject: [PATCH] Update depth-first.test.js Updating testing from test -> describe. It threw an error switching to match the solution which uses describe. --- specs/traversals/depth-first.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/traversals/depth-first.test.js b/specs/traversals/depth-first.test.js index 367f90d8..96951d58 100644 --- a/specs/traversals/depth-first.test.js +++ b/specs/traversals/depth-first.test.js @@ -12,7 +12,7 @@ const postorderTraverse = (node, array) => { // unit tests // do not modify the below code -test.skip("depth-first traversals", function () { +describe.skip("depth-first traversals", function () { const tree = { value: 8, left: {