forked from hyperledger-archives/indy-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactored tests and removed list_state references (hyperledger-archi…
…ves#22) * When node's garbage collection is triggered, a callback in clearOnExit will be called which calls release on the Rust connection object. Garbage collection should happen with our sdk when garbage collection happens with node. Improved Tests * added comments for the clearOnExit * Removed the list_state function in connection object because it isn't implemented in Rust yet. * fixed connection tests and Connection Interface * changed vars to camel case. Changed docker file to update npm * deleted js files in src directory * changed test because of naming conflicts * fixed path for one of the imports * changed tsconfig * added dist directory. This will be temporary * added weak library to package.json * Corrected the test format for index-test.js Removed the references to cxs_connection_list_state because we aren't using it yet Fixed paths in connection-test * added js files from dist. Won't have in the future * Removed the dist directory from github Signed-off-by: ryMarsh44 <ryan.marsh44@gmail.com>
- Loading branch information
Showing
5 changed files
with
35 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2016", | ||
"module": "commonjs", | ||
"sourceMap": true, | ||
"outDir": "./dist" | ||
}, | ||
"include": [ | ||
"src/**/*" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
"compilerOptions": { | ||
"target": "es2016", | ||
"module": "commonjs", | ||
"sourceMap": true, | ||
"outDir": "./dist" | ||
}, | ||
"include": [ | ||
"src/**/*" | ||
], | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |