From 553cd2e262c2f82d6767fbd4cfde674d68c63de6 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Tue, 9 Aug 2022 09:47:48 -0500 Subject: [PATCH] update deps, fix tests --- konva.js | 2 +- konva.min.js | 2 +- package.json | 24 ++++++++--------- test/unit/Stage-test.ts | 57 ++++++++++++++++++++++++----------------- 4 files changed, 47 insertions(+), 38 deletions(-) diff --git a/konva.js b/konva.js index caebaf74..742b5419 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v8.3.11 * http://konvajs.org/ * Licensed under the MIT - * Date: Fri Aug 05 2022 + * Date: Tue Aug 09 2022 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/konva.min.js b/konva.min.js index ffc7e682..70bd051e 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,7 +3,7 @@ * Konva JavaScript Framework v8.3.11 * http://konvajs.org/ * Licensed under the MIT - * Date: Fri Aug 05 2022 + * Date: Tue Aug 09 2022 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/package.json b/package.json index 0919ba3b..559f6aae 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "test": "npm run test:browser && npm run test:node", "test:build": "parcel build ./test/unit-tests.html --dist-dir ./test-build --target none --public-url ./ --no-source-maps", "test:browser": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security", - "test:node": "env TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha -r ts-node/register test/unit/**/*.ts --exit && npm run test:import", + "test:node": "ts-mocha -p ./test/tsconfig.json test/unit/**/*.ts --exit && npm run test:import", "test:watch": "rm -rf ./parcel-cache && parcel serve ./test/unit-tests.html ./test/manual-tests.html ./test/sandbox.html", "tsc": "tsc --removeComments && tsc --build ./tsconfig-cmj.json", "rollup": "rollup -c", @@ -88,10 +88,10 @@ } ], "devDependencies": { - "@parcel/transformer-image": "2.6.0", - "@size-limit/preset-big-lib": "^7.0.8", + "@parcel/transformer-image": "2.7.0", + "@size-limit/preset-big-lib": "^8.0.0", "@types/mocha": "^9.1.1", - "canvas": "^2.9.1", + "canvas": "^2.9.3", "chai": "4.3.6", "filehound": "^1.17.6", "gulp": "^4.0.2", @@ -105,19 +105,19 @@ "gulp-uglify": "^3.0.2", "gulp-uglify-es": "^3.0.0", "gulp-util": "^3.0.8", - "mocha": "9.2.2", + "mocha": "10.0.0", "mocha-headless-chrome": "^4.0.0", - "parcel": "2.6.0", + "parcel": "2.7.0", "process": "^0.11.10", - "rollup": "^2.75.0", + "rollup": "^2.77.2", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-sourcemaps": "^0.6.3", - "rollup-plugin-typescript2": "^0.31.2", - "size-limit": "^7.0.8", - "ts-mocha": "^9.0.2", - "ts-node": "^9.1.1", - "typescript": "^4.6.3" + "rollup-plugin-typescript2": "^0.32.1", + "size-limit": "^8.0.0", + "ts-mocha": "^10.0.0", + "ts-node": "^10.9.1", + "typescript": "^4.7.4" }, "keywords": [ "canvas", diff --git a/test/unit/Stage-test.ts b/test/unit/Stage-test.ts index 6473f31c..354a5111 100644 --- a/test/unit/Stage-test.ts +++ b/test/unit/Stage-test.ts @@ -1315,18 +1315,21 @@ describe('Stage', function () { layer.add(circle); stage.add(layer); - try{ - const img = await stage.toImage({ - x: -10, - y: -10, - width: stage.height() + 20, - height: stage.height() + 20, - callback: img => assert.isTrue(img instanceof Image, 'not an image') - }); - assert.isTrue(img instanceof Image, 'not an image'); - } catch(e){ - console.error(e); - assert.fail('error creating image'); + if (isBrowser) { + try { + const img = await stage.toImage({ + x: -10, + y: -10, + width: stage.height() + 20, + height: stage.height() + 20, + callback: (img) => + assert.isTrue(img instanceof Image, 'not an image'), + }); + assert.isTrue(img instanceof Image, 'not an image'); + } catch (e) { + console.error(e); + assert.fail('error creating image'); + } } }); @@ -1344,18 +1347,24 @@ describe('Stage', function () { layer.add(circle); stage.add(layer); - try{ - const blob = await stage.toBlob({ - x: -10, - y: -10, - width: stage.height() + 20, - height: stage.height() + 20, - callback: blob => assert.isTrue(blob instanceof Blob && blob.size > 0, 'blob is empty') - }); - assert.isTrue(blob instanceof Blob && blob.size > 0, 'blob is empty'); - } catch(e){ - console.error(e); - assert.fail('error creating blob'); + if (isBrowser) { + try { + const blob = await stage.toBlob({ + x: -10, + y: -10, + width: stage.height() + 20, + height: stage.height() + 20, + callback: (blob) => + assert.isTrue( + blob instanceof Blob && blob.size > 0, + 'blob is empty' + ), + }); + assert.isTrue(blob instanceof Blob && blob.size > 0, 'blob is empty'); + } catch (e) { + console.error(e); + assert.fail('error creating blob'); + } } });