Skip to content

Commit

Permalink
test(connector-fabric): fix v2-2-x/deploy-lock-asset.test.ts
Browse files Browse the repository at this point in the history
Telling the typescript compiler to skip the library code check so that
auto-updating dependencies don't break the test fixture chain code
compilation.

The root cause and the fix are equivalent as they were for:
#2322
#2323
Commit SHA: dfb7278

Fixes #2341

Also sneaking in a .gitignore change with this: there is a VSCode
extension that stores local editing history of files in a .history/
sub-folder and that needs to be ignored in git otherwise it just keeps
popping up in the git index which is annoying sometimes.

Signed-off-by: Peter Somogyvari <[email protected]>
  • Loading branch information
petermetz committed Apr 4, 2023
1 parent 1cc9667 commit 2c5148c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,5 @@ site/
!packages/cactus-plugin-ledger-connector-*-socketio/src/main/typescript/common/core/bin

tools/docker/geth-testnet/data-geth1/

.history/
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"moduleResolution": "node",
"module": "commonjs",
"declaration": true,
"sourceMap": true
"sourceMap": true,
"skipLibCheck": true
},
"include": [
"./src/**/*"
Expand Down

0 comments on commit 2c5148c

Please sign in to comment.