Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
✅ Update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
ishantiw committed Feb 13, 2024
1 parent 8e5c944 commit 9a28042
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions framework/test/unit/__snapshots__/application.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ exports[`Application #constructor should set internal variables 1`] = `
},
"dataPath": "~/.lisk/beta-sdk-app",
"enableMetrics": false,
"inclusionProofKeys": [],
"keepEventsForHeights": 300,
"keepInclusionProofsForHeights": 300,
"logLevel": "info",
"version": "0.1.0",
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ exports[`schema/application_config_schema.js application config schema must matc
},
"dataPath": "~/.lisk/beta-sdk-app",
"enableMetrics": false,
"inclusionProofKeys": [],
"keepEventsForHeights": 300,
"keepInclusionProofsForHeights": 300,
"logLevel": "info",
"version": "0.1.0",
},
Expand Down Expand Up @@ -348,9 +350,19 @@ exports[`schema/application_config_schema.js application config schema must matc
"enableMetrics": {
"type": "boolean",
},
"inclusionProofKeys": {
"items": {
"type": "string",
},
"type": "array",
"uniqueItems": true,
},
"keepEventsForHeights": {
"type": "integer",
},
"keepInclusionProofsForHeights": {
"type": "integer",
},
"logLevel": {
"enum": [
"trace",
Expand All @@ -373,6 +385,8 @@ exports[`schema/application_config_schema.js application config schema must matc
"dataPath",
"logLevel",
"keepEventsForHeights",
"keepInclusionProofsForHeights",
"inclusionProofKeys",
"backup",
],
"type": "object",
Expand Down

0 comments on commit 9a28042

Please sign in to comment.