Skip to content

Commit 32198cc

Browse files
author
kirill.novinskiy@aspose.com
committed
update dependencies
1 parent e2e61b3 commit 32198cc

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.devcontainer/devcontainer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "Node.js & TypeScript",
3+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm",
4+
"postCreateCommand": "npm install --no-bin-links",
5+
"workspaceFolder": "/SDKs/Node.JS",
6+
"workspaceMount": "source=${localWorkspaceFolder},target=/SDKs/Node.JS,type=bind,consistency=cached",
7+
"customizations": {
8+
"vscode": {
9+
"settings": {
10+
"mochaExplorer.files": "test/*.ts",
11+
"mochaExplorer.require": "ts-node/register",
12+
"mochaExplorer.timeout": 60000
13+
},
14+
"extensions": [
15+
"hbenl.vscode-mocha-test-adapter"
16+
]
17+
}
18+
},
19+
"mounts": [
20+
"source=${localWorkspaceFolder}/../../Settings,target=/Settings,type=bind,consistency=cached"
21+
]
22+
23+
}

test/testImages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ describe("Images Tests", () => {
278278

279279
it("should return response with code 200", async () => {
280280

281-
return BaseTest.getPdfApi().getImagesExtractSvg("Alfa.pdf", pageNumber, null, BaseTest.remoteTempFolder, null)
281+
return BaseTest.getPdfApi().getImagesExtractSvg("alfa.pdf", pageNumber, null, BaseTest.remoteTempFolder, null)
282282
.then((result) => {
283283
assert.equal(result.response.statusCode, 200);
284284
assert.equal(13, result.body.list.length);

0 commit comments

Comments
 (0)