Skip to content

Commit 6dc7450

Browse files
author
Kohei Asai
authored
Change test.only to test (#88)
1 parent 826a2e9 commit 6dc7450

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utilities/TreeNode.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ describe("createBinaryTreeNode", () => {
3333
});
3434
});
3535

36-
test.only("creates TreeNode by an array #3", () => {
36+
test("creates TreeNode by an array #3", () => {
3737
expect(
3838
createBinaryTreeNode([5, 4, 7, 3, null, 2, null, -1, null, 9])
3939
).toEqual({

0 commit comments

Comments
 (0)