Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
netil committed Sep 23, 2022
2 parents 5720b73 + 1490b63 commit 22586fc
Show file tree
Hide file tree
Showing 4 changed files with 203 additions and 156 deletions.
File renamed without changes.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"lint": "npm run lint:types && eslint src --ext .ts",
"lint:types": "dtslint --onlyTestTsNext types",
"loc": "cloc --by-file src",
"test": "node --max-old-space-size=3072 ./node_modules/karma/bin/karma start",
"test": "node --max-old-space-size=3072 ./node_modules/karma/bin/karma start ./karma.conf.cjs",
"test:chrome": "cross-env TEST_TYPE=chrome npm test",
"coverage": "cross-env TEST_TYPE=coverage npm test",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
Expand Down Expand Up @@ -104,7 +104,7 @@
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.19.0",
"@commitlint/cli": "15.0.0",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-node-resolve": "^14.1.0",
Expand Down Expand Up @@ -175,7 +175,7 @@
"mocha": "^10.0.0",
"node-sass": "^7.0.3",
"regenerator-runtime": "^0.13.7",
"rollup": "^2.79.0",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"sass-loader": "^13.0.2",
"semantic-release": "^19.0.5",
Expand All @@ -185,7 +185,7 @@
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"tslib": "^2.4.0",
"typescript": "4.6.2",
"typescript": "4.8.3",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-clean": "^1.2.5",
Expand Down
4 changes: 3 additions & 1 deletion test/internals/boost-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ describe("BOOST", () => {
});
});

describe("useWorker", () => {
describe("useWorker", function() {
this.timeout(5000);

it("check if given function run on WebWorker thread.", done => {
runWorker(true, function test_for_worker(p) {
return `${p}_123`;
Expand Down
Loading

0 comments on commit 22586fc

Please sign in to comment.