Skip to content

Commit

Permalink
CI Scan
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbatuto committed Jun 21, 2023
1 parent 3e6d908 commit 2fd9d4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/cactus-plugin-keychain-memory-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"webpack:dev": "npm-run-all webpack:dev:node webpack:dev:web",
"webpack:dev:node": "webpack --env=dev --target=node --config ../../webpack.config.js",
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"

},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0-alpha-prerelease",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2018"
crate-type = ["cdylib"]

[dependencies]
wasm-bindgen = "0.2.68"
wasm-bindgen = "0.2.87"
web-sys = {version = "0.3.45", features = ["console"]}
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ describe(testCase, () => {
];

const filesOnFs = await Containers.ls(dockerodeContainer, containerPkDir);
console.log("log filesOnFs:", filesOnFs);
console.log("log expectedFiles:", expectedFiles);
expect(filesOnFs).toBeTruthy();
expect(Array.isArray(filesOnFs)).toBe(true);
expect(filesOnFs).toEqual(expectedFiles);
Expand Down

0 comments on commit 2fd9d4f

Please sign in to comment.