Skip to content
This repository was archived by the owner on Mar 18, 2022. It is now read-only.

Commit d877e37

Browse files
committed
Remove .only
1 parent 349b428 commit d877e37

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/unit/tree.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ describe("Tree.setNode", () => {
8888
});
8989
});
9090

91-
describe.only("Tree.setNodes", () => {
91+
describe("Tree.setNodes", () => {
9292
const testCases: {depth: number; gindexes: number[]}[] = [
9393
{
9494
depth: 1,
@@ -208,7 +208,7 @@ describe.only("Tree.setNodes", () => {
208208
});
209209
}
210210

211-
it.skip("Should set multiple nodes correctly", () => {
211+
it("Should set multiple nodes correctly", () => {
212212
const depth = 5;
213213
const tree = new Tree(zeroNode(depth));
214214
tree.setNodes(
@@ -218,7 +218,7 @@ describe.only("Tree.setNodes", () => {
218218
expect(toHex(tree.root)).to.equal("02607e58782c912e2f96f4ff9daf494d0d115e7c37e8c2b7ddce17213591151b");
219219
});
220220

221-
it.skip("Should set multiple nodes", () => {
221+
it("Should set multiple nodes", () => {
222222
const depth = 3;
223223
const tree = new Tree(subtreeFillToDepth(new LeafNode(Buffer.alloc(32, 0)), depth));
224224

0 commit comments

Comments
 (0)