Skip to content

Commit

Permalink
test: skip expensive delegation node tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rflechtner committed Jun 1, 2023
1 parent 59af3e4 commit 3633210
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/delegation/DelegationNode.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ describe('DelegationNode', () => {
expect(await nodes[hashList[0]].subtreeNodeCount()).toStrictEqual(100)
})

it('counts all subnodes in deeply nested structure (1000)', async () => {
it.skip('counts all subnodes in deeply nested structure (1000)', async () => {
const lastIndex = 1000
nodes = hashList.slice(0, lastIndex + 1).reduce(
(previous, current, index) => ({
Expand All @@ -335,7 +335,7 @@ describe('DelegationNode', () => {
expect(await nodes[hashList[0]].subtreeNodeCount()).toStrictEqual(1000)
})

it('counts all subnodes in deeply nested structure (10000)', async () => {
it.skip('counts all subnodes in deeply nested structure (10000)', async () => {
const lastIndex = 10000
nodes = hashList.slice(0, lastIndex + 1).reduce(
(previous, current, index) => ({
Expand Down

0 comments on commit 3633210

Please sign in to comment.